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

Portabilityportable
Stabilityprovisional
Maintainerhenry@elsie.org.uk

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)