Module binary

Source

Structs§

BinaryExpr
BinaryExprEncoding
BinaryVTable

Functions§

and
Create a new BinaryExpr using the And operator.
and_collect
Collects a list of anded values into a single vortex, expr [x, y, z] => x and (y and z)
and_collect_right
Collects a list of anded values into a single vortex, expr [x, y, z] => x and (y and z)
checked_add
Create a new BinaryExpr using the CheckedAdd operator.
eq
Create a new BinaryExpr using the Eq operator.
gt
Create a new BinaryExpr using the Gt operator.
gt_eq
Create a new BinaryExpr using the Gte operator.
lt
Create a new BinaryExpr using the Lt operator.
lt_eq
Create a new BinaryExpr using the Lte operator.
not_eq
Create a new BinaryExpr using the NotEq operator.
or
Create a new BinaryExpr using the Or operator.
or_collect
Collects a list of ored values into a single vortex, expr [x, y, z] => x or (y or z)