hackage-security-0.6.2.5: src/Hackage/Security/Util/Stack.hs
-- | Heterogenous lists
module Hackage.Security.Util.Stack (
(:-)(..)
) where
import Prelude
data h :- t = h :- t
deriving (Eq, Show)
infixr 5 :-
-- | Heterogenous lists
module Hackage.Security.Util.Stack (
(:-)(..)
) where
import Prelude
data h :- t = h :- t
deriving (Eq, Show)
infixr 5 :-