mediabus-0.4.0.0: Multimedia streaming on top of Conduit

Safe HaskellNone
LanguageHaskell2010

Data.MediaBus.Basics.Monotone

Synopsis

Documentation

class LocalOrd a where Source #

Class of numbers that are monotone increasing having only a relative order, that is not necessarily transitive.

For example, a series of Word8 values: 0 64 128 192 0 64 128 ... could be interpreted as a monotone series of consecutive increasing values, that wrap around after 255. But note that the Ord instance is not sufficient to express that 0 succeeds 192, since Ord ensures complete transitivity and therefore 0 < 192.

Minimal complete definition

succeeds

Methods

succeeds :: a -> a -> Bool Source #