Module Binary
A module for creating binary predicates (predicates with two parameters) without requiring a signature predicate declaration.
Examples:
Binary<int, string>::pred/2: A predicate with two parameters, an int and a string, and no result.Binary<A, B>::Ret<C>::pred/2: A predicate with two parameters, anAand aB, and a result of typeC.
Import path
import qtil.parameterization.SignaturePredicatesModules
| Ret | A module for adding a result type to a binary predicate. |