-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Validity instances for containers -- -- Please see README.md @package validity-containers @version 0.1.0.1 module Data.Validity.Tree -- | A tree of things is valid if all the things are valid instance Data.Validity.Validity a => Data.Validity.Validity (Data.Tree.Tree a) module Data.Validity.Map -- | A tree of things is valid if all the things are valid and the map -- itself is valid. instance (GHC.Classes.Ord k, Data.Validity.Validity k, Data.Validity.Validity v) => Data.Validity.Validity (Data.Map.Base.Map k v) module Data.Validity.Containers