Safe Haskell | None |
---|
Control.Distributed.Process.Internal.StrictList
Description
Spine and element strict list
- data StrictList a
- = Cons !a !(StrictList a)
- | Nil
- length :: StrictList a -> Int
- reverse :: StrictList a -> StrictList a
- reverse' :: StrictList a -> StrictList a -> StrictList a
Documentation
length :: StrictList a -> IntSource
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