= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package datakit-ci
-
datakit_ci
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Infix operators
fn $ x
is the result of applying the evaluation of the term fn
to the evaluation of the term x
. fn
and x
are evaluated in parallel. While fn
is not successful, the result is the same as fn
. Otherwise, if x
is not successful then the result is the same as x
. You can use $
multiple times to support functions of multiple arguments (e.g. fn $ a $ b $ c
). Use with join
if fn
itself returns a term.
x >>= fn
(bind) is fn y
where y
is the successful result of evaluating x
, or simply x
if x
is not successful.
ON THIS PAGE