Thun/docs/reference/select.md

25 lines
415 B
Markdown

------------------------------------------------------------------------
## select
Basis Function
Use a Boolean value to select one of two items from a sequence. :
[a b] false select
------------------------
a
[a b] true select
-----------------------
b
### Discussion
The sequence can contain more than two items but not fewer.
### Crosslinks
[choice]