-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Orphan instances for binary -- @package binary-orphans @version 0.1.0.0 -- | Provides orphan Binary instances for types in various packages: -- --
-- decode . encode == id ---- -- That is, the get and put methods should be the inverse -- of each other. A range of instances are provided for basic Haskell -- types. class Binary t put :: Binary t => t -> Put get :: Binary t => Get t instance Binary LocalTime instance Binary TimeOfDay instance Binary TimeZone instance Binary NominalDiffTime instance Binary UTCTime instance Binary DiffTime instance Binary UniversalTime instance Binary Day instance Binary (Fixed a) instance Binary b => Binary (Tagged s b) instance Binary Scientific instance (Hashable v, Eq v, Binary v) => Binary (HashSet v) instance (Hashable k, Eq k, Binary k, Binary v) => Binary (HashMap k v) instance Binary Value