Skip to content

Files

Latest commit

d4d6096 · Aug 17, 2024

History

History

procedures

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 17, 2024
May 20, 2017
May 20, 2017
Jan 12, 2018
Oct 20, 2020
Jun 12, 2018
Aug 17, 2024
Jun 12, 2018
Aug 17, 2024
Feb 12, 2019
Feb 27, 2019
Feb 22, 2019
Apr 1, 2019
Jun 25, 2019
Jun 25, 2019
Apr 1, 2019
May 1, 2019
Aug 17, 2024
Jun 25, 2019
Nov 17, 2021
Oct 23, 2018
Oct 4, 2018
Aug 14, 2023
Jan 23, 2019
Feb 4, 2018
Apr 1, 2019
Apr 1, 2019
Feb 27, 2019
Jan 24, 2018
Oct 4, 2018
Aug 17, 2024
Feb 4, 2018
Feb 3, 2018
Aug 13, 2018
Apr 1, 2019
Oct 4, 2018
Jan 7, 2024
Oct 4, 2018
Nov 16, 2017
Feb 10, 2018
Feb 2, 2018
Apr 1, 2019
Aug 17, 2024
Jul 22, 2018
Oct 17, 2018
Oct 3, 2017
Jan 13, 2018
Oct 4, 2018
Oct 23, 2018
Apr 14, 2019
May 28, 2018
Nov 16, 2018
Nov 23, 2021
Jun 8, 2018
May 16, 2017
Feb 24, 2017
Oct 4, 2018
Oct 4, 2018
Aug 17, 2024
Oct 4, 2018
Feb 4, 2018
Apr 16, 2019
Aug 17, 2024
Dec 24, 2018
Aug 17, 2024
Dec 21, 2016
Oct 4, 2018
Dec 24, 2018
Dec 24, 2018
Oct 4, 2018
Oct 17, 2018
Sep 18, 2018
Aug 13, 2018
Apr 1, 2019
Aug 17, 2024
Apr 1, 2019
Aug 17, 2024

procedures

core

  • _arr - "_arr" is the procedure behind arrays.
  • _obj - "_obj" is the procedure behind objects (maps).
  • _skip - Skips x messages, mostly used for testing flor.
  • all? - Returns true if all the elements in a collection return true for the given function.
  • and, or - When and evaluates the children and returns false as soon as one of returns a falsy value. Returns true else. When or evaluates the children and returns true as soon as one of them returns a trueish value. Returns false else.
  • any? - Returns true if at least one of the member of a collection returns something trueish for the given function. Returns false else.
  • apply - Applies a function.
  • +, -, *, /, % - The base implementation for + - + / %
  • array?, object?, boolean?, number?, string?, null?, list?, dict?, hash?, nil?, false?, true?, pair?, float? - Returns true if the argument or the incoming ret matches in type.
  • break, continue - Breaks or continues a "while", "until", "loop" or a "cursor".
  • case - The classical case form.
  • collect - A simplified version of map.
  • cond - Evaluates all its condition children until one evaluates to true (or it's an else), then executes the corresponding clause child.
  • cursor - Executes child expressions in sequence, but may be "guided".
  • def, fun, define - Defines a function.
  • detect - Detect is a simplified version of find.
  • do-return - Takes a set of arguments and returns a function that will return those arguments again.
  • each - Each is a simplified version of for-each.
  • empty? - Returns true if the given collection or string is empty.
  • fail, error - Explicitly raises an error.
  • filter, filter-out - Filters a collection
  • find - Finds the first matching element.
  • flatten - Flattens the given array
  • for-each - Calls a function for each element in the argument collection.
  • if, unless, ife, unlesse, _if, _unless - The classical "if" (and its "unless" sidekick)
  • inject - A simplified version of reduce.
  • keys, values - Returns the "keys" or the "values" of an object.
  • length, size - Returns the length of its last collection argument or the length of the incoming f.ret
  • loop - Executes child expressions in sequence, then loops around.
  • map - This is the classical "map" procedure. It accepts a collection and a function and yields a new collection.
  • match - A kind of "destructuring case".
  • matchr, match?, pmatch - Matches a string against a regular expression.
  • merge - Merges objects or arrays.
  • move - Moves a cursor to a given position, a kind of local goto.
  • noeval - Immediately replies, children are not evaluated
  • noret - Executes its children, but doesn't alter the received f.ret
  • not - Negates its last child (or its last unkeyed attribute)
  • on - Catches signals or errors.
  • on_cancel - Counterpart to the on_cancel: attribute.
  • on_error - Counterpart to the on_error: attribute.
  • on_receive - Binds a function to the parent node, the function will be called each time the parent node "receives".
  • push, pushr - Pushes a value into an array (in a variable or a field).
  • rand - Returns a randomly generated number.
  • range - Generates ranges of integers.
  • reduce - Takes a collection and a function, reduces the collection to a single result thanks to the function.
  • reverse - Reverses an array or a string.
  • select, reject - Filters a collection
  • sequence, begin - Executes child expressions in sequence.
  • set, setr - Sets a field or a variable.
  • shuffle, sample - Returns a shuffled version of an array.
  • slice, index - Takes an array or a string and returns a slice of it (a new array or a new string).
  • sort - Sorts an array or an object.
  • sort_by - Takes a collection and a function and returns the collection sorted by the value returned by the function.
  • stall - Mostly used in flor tests. Stalls the current branch of execution.
  • downcase, lowercase, lowcase, upcase, uppercase, capitalize, trim, strip, snakecase, snake_case, camelcase, camelCase - "downcase", "upcase", "capitalize", etc.
  • timestamp, ltimestamp - Places a string timestamp in f.ret.
  • to-array, to-object - Turns the argument into an array or an object.
  • type-of, type - returns the type of argument or the incoming f.ret.
  • until, while - Loops until or while a condiation evaluates to true.

unit

  • abort, kabort - Cancels the current execution.
  • ccollect, c-collect - A concurrent version of collect.
  • ceach, c-each - Concurrent "each".
  • c-for-each - Concurrent "for-each", launches a concurrent branch for each elt or entry of the incoming collection.
  • cmap, c-map - Concurrent version of "map". Spins a concurrent child for each element of the incoming/argument collection.
  • cancel, kill - Cancels an execution branch
  • concurrence - Executes its children concurrently.
  • cron - A macro-procedure, rewriting itself to schedule cron: ....
  • do-trap - A version of trap that accepts a block instead of a function.
  • every - A macro-procedure, rewriting itself to schedule every: ....
  • graft, import - Graft a subtree into the current execution.
  • on_timeout - Counterpart to the on_timeout: attribute.
  • schedule - Schedules a function in time.
  • signal - Used in conjunction with "on".
  • sleep - Makes a branch of an execution sleep for a while.
  • task - Tasks a tasker with a task.
  • trap - Watches the messages emitted in the execution and reacts when a message matches certain criteria.

core and unit tree