@hackage strict-list1.0.0.0
Strict linked list with stack-safe operations
Installation
Dependencies (5)
- QuickCheck >=2.14 && <3
- base >=4.13 && <5
- deepseq >=1.4.3 && <2
- hashable >=1.2 && <2
- semigroupoids >=5.3 && <7 Show all…
Dependents (3)
@hackage/ptr, @hackage/eventlog-live-otelcol, @hackage/deque
strict-list
Strict linked lists for Haskell, with stack-safe operations and reversed-order helpers for efficient intermediate work.
Example
{-# LANGUAGE OverloadedLists #-}
import StrictList
numbers :: StrictList Int
numbers = [1, 2, 3]