-
Notifications
You must be signed in to change notification settings - Fork 5
7) Predicate composition
Julien Cumin edited this page Jun 28, 2017
·
5 revisions
This feature is a work in progress
Predicates can be composed with each other in more elaborate ways using the angled brackets ⟨…⟩
.
Predicate compositions are considered to be user defined predicates (like {…}
) and are numeroted as such.
Compositions can contain other compositions.
Forks are compositions of 3 predicates a
, b
and c
. It gets translated as such:
⟨abc⟩ -> {aI&cJ∧I;Jb}
Example usage: average of a list of integers
⟨+/l⟩