Function group basic

Function group has those functions and groups:

  • Group flow - Contrlo flow functions
    • Function | - Pipe the output of one function to the next function.
    • Function default - Get the first non empty value.
    • Function ? - Return the second argument if the first argument is true. Return the third argument
  • Group collection - Functions that allow to use list or maps as collections
    • Function get - Get an item from an array by index or from a map by key.
    • Function size - Get the number of element in an array,
    • Function take - Take the first N of element in an array, object of string
    • Function take_last - Take the last N of element in an array, object of string
    • Function sub - If the first argument is a list, creates a new list that start from the second arguments and has the size of the third argument.

Use additional help with a function name to see more details about the function.