large-records-0.1.0.0: Efficient compilation for large records, linear in the size of the record
Safe HaskellNone
LanguageHaskell2010

Data.Record.Generic.Eq

Synopsis

Documentation

geq :: (Generic a, Constraints a Eq) => a -> a -> Bool Source #

Generic equality function

Typical usage:

instance Eq T where
  (==) = geq

TODO: Should we worry about short-circuiting here?