instant-generics-0.5: Generic programming library with a sum of products view

Copyright(c) 2011, Universiteit Utrecht
LicenseBSD3
Maintainergenerics@haskell.org
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell98

Generics.Instant.Functions.Eq

Description

The equality function.

Documentation

class GEq a where Source

Methods

geq :: a -> a -> Bool Source

Instances

GEq Bool 
GEq Char 
GEq Double 
GEq Float 
GEq Int 
GEq Integer 
GEq a => GEq [a] 
GEq a => GEq (Maybe a) 
(GEq a, GEq b) => GEq (a, b) 

geqDefault :: (Representable a, GEq' (Rep a)) => a -> a -> Bool Source