@hackage acc0.1.2
Sequence optimized for monoidal construction and folding
Installation
Dependencies (3)
- base >=4.11 && <5
- deepseq >=1.4.4 && <1.5
- semigroupoids >=5.3.4 && <6 Show all…
Dependents (4)
@hackage/strongweak, @hackage/opc-xml-da-client, @hackage/covenant, @hackage/yaml-unscrambler
Data structure intended for accumulating a sequence of elements for later traversal or folding. Useful for implementing all kinds of builders on top.
The benchmarks show that for the described use-case it
is on average 2 times faster than DList and Seq,
is on par with list when you always prepend elements and
is exponentially faster than list when you append.