9.1
1 Core Ebb Syntaxes
| (require ebb/core) | package: ebb-lib |
syntax
(ebb expr ...)
This form behaves like the standard threading macro, composing
application over a sequence of expressions.
syntax
(ebb/and expr ...)
A short-circuiting version of ebb. When any of the
expressions return #f, no further expressions are
evaluated.
syntax
(ebb> expr ...)
This form behaves like the standard right-threading macro, composing
application over a sequence of expressions.
syntax
(ebb>/and expr ...)
A short-circuiting version of ebb>. When any of the
expressions return #f, no further expressions are
evaluated.
1.1 Ebb Stream Delimiters
| (require ebb/base) | package: ebb-lib |
Implicit stream producer converting a list into a stream of values
which can in turn be fused with further expressions.
Implicit stream consumer converting a stream of values into a list.