/
Variable Arity Event Operators

Variable Arity Event Operators

The compound event operators used previously were given as infix, binary operators. (The term infix describes operators that are placed syntactically between their operands.) Event expressions also allow variable arity event operators that provide more convenient methods of expressing patterns over large numbers of events. (The term arity refers to the number of parameters a function takes. Variable arity functions can take a variable number of parameters.) Using compound operators in this way follows this pattern:

select when <eventop>(E1,[el]En)

In the previous example, <eventop> is one of or, and, before, after, or then. Variable arity functions are merely a convenience because their semantics can be expressed using the binary operators. For example, the following two select statements are equivalent:

select when and(A, B, C, D, E)
select when A and (B and (D and (C and E)))

Note that and and or are commutative. Consequently, the order of the arguments is not important for those two variable arity operators.

Related content

Compound Events
Compound Events
More like this
Group Operators
Group Operators
More like this
Event Expressions and Time
Event Expressions and Time
More like this
Event Operators
Event Operators
More like this
Event Expressions
Event Expressions
More like this
Predicate Expressions
Predicate Expressions
More like this

Copyright Picolabs | Licensed under Creative Commons.