Manuals/calci/ARRAYFY

From ZCubes Wiki
Revision as of 15:12, 4 February 2020 by Joseph (talk | contribs) (Created page with "==ARRAYFY(function,argumentmask)== ==Description== *Arrayfies a function to allow it to handle array parameters. Argumentmask is an array that indicates which of the paramete...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ARRAYFY(function,argumentmask)

Description

  • Arrayfies a function to allow it to handle array parameters. Argumentmask is an array that indicates which of the parameters should be treated as a single array, rather than be used to invoke combinatorial arguments.

Examples

distance:=speed*time;

ARRAYFY(distance)

distance(1..2,2..3)

speed time distance

1 2 2

1 3 3

2 2 4

2 3 6

See Also


References