-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | More useful trace functions for investigating bugs -- -- A collection of things for debugging, (to prevent me from writing them -- again) @package debug-tracy @version 0.1.0.2 module Debug.Tracy -- | trace with show and a delimiter built in tracy :: Show a => String -> a -> a -- | Spit out a random Keanu Reaves quote when a is evauluated keanu :: a -> a -- | spit out a random Arnold Schwarzenegger quote when a is -- evaluated arnold :: a -> a -- | Inspect the size of a collection hasLength :: Foldable t => String -> t a -> t a -- | Inspect if t a is null isFound :: Foldable t => String -> t a -> t a spy :: Show b => String -> (a -> b) -> a -> a scope :: String -> f a -> Scope f a unScope :: Scope f a -> f a data Scope f a instance (GHC.Base.Functor f, Data.Foldable.Foldable f) => GHC.Base.Functor (Debug.Tracy.Scope f) instance (GHC.Base.Applicative f, Data.Foldable.Foldable f) => GHC.Base.Applicative (Debug.Tracy.Scope f) instance (GHC.Base.Monad m, Data.Foldable.Foldable m) => GHC.Base.Monad (Debug.Tracy.Scope m)