distributed-process-0.4.0: Cloud Haskell: Erlang-style concurrency in Haskell

Safe HaskellNone

Control.Distributed.Process.Internal.StrictList

Description

Spine and element strict list

Synopsis

Documentation

data StrictList a Source

Strict list

Constructors

Cons !a !(StrictList a) 
Nil 

reverse :: StrictList a -> StrictList aSource

Reverse a strict list

reverse' :: StrictList a -> StrictList a -> StrictList aSource

reverseStrict' xs ys is 'reverse xs ++ ys' if they were lists