container-1.0.1: Containers abstraction and utilities.

Safe HaskellNone
LanguageHaskell2010

Data.Container.List

Documentation

class FromList l where Source

Minimal complete definition

Nothing

Methods

fromList :: [Item l] -> l Source

class ToList l where Source

Minimal complete definition

Nothing

Methods

toList :: l -> [Item l] Source

type IsList l = (FromList l, ToList l) Source

asList :: IsList a => Iso' a [Item a] Source