Functions and Operators
Function syntax
All built-in standard library functions are reflected as functions in e
.
Copy
e.str_upper(e.str("hello"));
// str_upper("hello")
e.op(e.int64(2), '+', e.int64(2));
// 2 + 2
const nums = e.set(e.int64(3), e.int64(5), e.int64(7))
e.op(e.int64(4), 'in', nums);
// 4 in {3, 5, 7}
e.math.mean(nums);
// math::mean({3, 5, 7})
Prefix operators
Unlike functions, operators do not correspond to a top-level function on the
e
object. Instead, they are expressed with the e.op
function.
Prefix operators operate on a single argument: OPERATOR <arg>
.
Copy
e.op('not', e.bool(true)); // not true
e.op('exists', e.set('hi')); // exists {'hi'}
e.op('distinct', e.set('hi', 'hi')); // distinct {'hi', 'hi'}
|
Infix operators
Infix operators operate on two arguments: <arg> OPERATOR <arg>
.
Copy
e.op(e.str('Hello '), '++', e.str('World!'));
// 'Hello ' ++ 'World!'
|