move // operator to internals

This commit is contained in:
rnhmjoj 2016-02-23 02:36:12 +01:00
parent 87f99075ae
commit 5b677c44be

View File

@ -163,3 +163,8 @@ rest E = E
rest (M E) = E
rest (M x) = M (rest x)
rest (_:|xs) = xs
-- | Alias to quot
(//) :: Integral a => a -> a -> a
(//) = quot