MissingK-0.0.1: Useful types and definitions missing from other libraries

Safe HaskellSafe
LanguageHaskell98

Data.Stack

Documentation

type Stack a = [a] Source #

pop :: Stack a -> (a, Stack a) Source #

push :: a -> Stack a -> Stack a Source #