wumpus-basic-0.3.0: Common drawing utilities built on wumpus-core.Source codeContentsIndex
Wumpus.Basic.Utils.HList
PortabilityGHC
Stabilityunstable
Maintainerstephen.tetley@gmail.com
Contents
Hughes list
Description
Hughes list, ...
Synopsis
type H a = [a] -> [a]
emptyH :: H a
wrapH :: a -> H a
consH :: a -> H a -> H a
snocH :: H a -> a -> H a
appendH :: H a -> H a -> H a
unfoldrH :: (b -> Maybe (a, b)) -> b -> H a
veloH :: (a -> H b) -> [a] -> H b
concatH :: [H a] -> H a
toListH :: H a -> [a]
fromListH :: [a] -> H a
Hughes list
type H a = [a] -> [a]Source
emptyH :: H aSource
wrapH :: a -> H aSource
consH :: a -> H a -> H aSource
snocH :: H a -> a -> H aSource
appendH :: H a -> H a -> H aSource
unfoldrH :: (b -> Maybe (a, b)) -> b -> H aSource
veloH :: (a -> H b) -> [a] -> H bSource
velo consumes the list as per map, but builds it back as a Hughes list - so items can be dropped replaced, repeated, etc...
concatH :: [H a] -> H aSource
toListH :: H a -> [a]Source
fromListH :: [a] -> H aSource
Produced by Haddock version 2.6.1