csk_fn_size_greater_than_or_equal

Use this function to see if the size of the object list is greater than or equal to the input size.
  • Boolean: csk_fn_size_greater_than_or_equal(List<Object> inputList, String input)
  • Input:
    • List<Object> inputList: The object to be checked 
    • String input: The number of objects to be compared to the inputList
  • Example:

    $csk_fn_size_greater_than_or_equal({"A", "B"}, "1") → true

    $csk_fn_size_greater_than_or_equal({"A", "B"}, "2") → true

    $csk_fn_size_greater_than_or_equal({"A", "B"}, "3") → false