Fermat
Search
K
Comment on page

Any

You can compare all element of a list with a function. It returns true if any element of the structure evals true on the given function, otherwise, it returns false.
any [structure] with ([ID]):
[block]
end
Here, you can find an example with a list
any [1,2,3,4] with (x):
x is 1
end
Output:
> true
Last modified 1yr ago