hgeometry-0.8.0.0: Geometric Algorithms, Data structures, and Data types.
Data.Geometry.Interval.Util
newtype L r Source #
Open on left endpoint; so Closed before open
Constructors
Fields
Defined in Data.Geometry.Interval.Util
Methods
(==) :: L r -> L r -> Bool #
(/=) :: L r -> L r -> Bool #
compare :: L r -> L r -> Ordering #
(<) :: L r -> L r -> Bool #
(<=) :: L r -> L r -> Bool #
(>) :: L r -> L r -> Bool #
(>=) :: L r -> L r -> Bool #
max :: L r -> L r -> L r #
min :: L r -> L r -> L r #
showsPrec :: Int -> L r -> ShowS #
show :: L r -> String #
showList :: [L r] -> ShowS #
Associated Types
type Rep (L r) :: Type -> Type #
from :: L r -> Rep (L r) x #
to :: Rep (L r) x -> L r #
rnf :: L r -> () #
unL :: forall r r. Iso (L r) (L r) (EndPoint r) (EndPoint r) Source #
newtype R r Source #
Order on right endpoint; so Open before Closed
(==) :: R r -> R r -> Bool #
(/=) :: R r -> R r -> Bool #
compare :: R r -> R r -> Ordering #
(<) :: R r -> R r -> Bool #
(<=) :: R r -> R r -> Bool #
(>) :: R r -> R r -> Bool #
(>=) :: R r -> R r -> Bool #
max :: R r -> R r -> R r #
min :: R r -> R r -> R r #
showsPrec :: Int -> R r -> ShowS #
show :: R r -> String #
showList :: [R r] -> ShowS #
type Rep (R r) :: Type -> Type #
from :: R r -> Rep (R r) x #
to :: Rep (R r) x -> R r #
rnf :: R r -> () #
unR :: forall r r. Iso (R r) (R r) (EndPoint r) (EndPoint r) Source #