Module

Test.Abides.Data.Ord

Package
purescript-abides
Repository
athanclark/purescript-abides

#reflexive Source

reflexive :: forall a. Ord a => a -> Boolean

x <= x?

#antisymmetry Source

antisymmetry :: forall a. Ord a => a -> a -> Boolean

x <= y && y <= x => x == y

#transitive Source

transitive :: forall a. Ord a => a -> a -> a -> Boolean

x <= y && y <= z => x <= z