dequeue-0.1.12: A typeclass and an implementation for double-ended queues.

Copyright(c) Henry Bucklow 2010
LicenseBSD3
Maintainerhenry@elsie.org.uk
Stabilityprovisional
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Dequeue.Show

Description

A newtype used entirely for its derived Read and Show instances. These are then used by showDequeue and readDequeue to make writing Read and Show instances for Dequeues easier.

Documentation

newtype Dequeue a Source

Constructors

Dequeue [a] 

Instances

Read a => Read (Dequeue a) 
Show a => Show (Dequeue a)