Mandrake v0.0.2 Mandrake.Relation
Mandrake relational functions.
Summary
Functions
Returns true if first value is greater than the second
Returns true if first value is greater than or equal to the second
Returns true if first value is less than the second
Returns true if first value is less than or equal to the second
Functions
Returns true if first value is greater than the second.
Examples
iex> Mandrake.Relation.gt(7, 5)
true
Returns true if first value is greater than or equal to the second.
Examples
iex> Mandrake.Relation.gte(7, 7)
true
Returns true if first value is less than the second.
Examples
iex> Mandrake.Relation.lt(7, 5)
false