csk_fn_size_greater_than

Use this function to see if the size of the object list is greater than the input size.
  • Boolean: csk_fn_size_greater_than(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({"A", "B"}, "1") → true

    $csk_fn_size_greater_than({"A", "B"}, "2") → false

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