FreeType-0.1.0.0

Safe HaskellSafe
LanguageHaskell2010

Data.AppendList

Synopsis

Documentation

newtype AppendList a #

A list, appending is O(1) instead of prepending.

Constructors

AppendList [a] 
Instances
Semigroup (AppendList a) # 
Instance details

Defined in Data.AppendList

Monoid (AppendList a) # 
Instance details

Defined in Data.AppendList

nil :: AppendList a #

Empty AppendList.

append :: AppendList a -> a -> AppendList a #

Append to an AppendList.

unwrapAppendList :: AppendList a -> [a] #

Get a list from an AppendList.