1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00

Define the modulus operation.

This commit is contained in:
Rob Rix 2017-05-03 11:38:18 -04:00
parent 417b990d00
commit 82d2a73cf2

View File

@ -19,6 +19,7 @@ data Arithmetic a
| Minus a a
| Times a a
| DividedBy a a
| Modulo a a
| Power a a
deriving (Eq, Foldable, Functor, Generic1, Show, Traversable)