@hackage seqn0.1.0.0
Sequences and measured sequences
Categories
License
BSD-3-Clause
Maintainer
soumiksarkar.3120@gmail.com
Links
Versions
seqn
seqn offers two sequence types:
-
Seq, an immutable sequence supporting operations such as index, insert, delete, split, append, in logarithmic time.Seqis well-suited to use cases where there are frequent changes to the structure of the sequence. -
MSeq, a sequence likeSeq, which additionally supports constant time access to the accumulated "measure" of all its elements. See the documentation forMSeqfor more about measures.
seqn also offers a priority-queue structure, PQueue, with logarithmic time
queue operations.
Documentation
Please find the documentation on Hackage: seqn
Alternatives
The following structures are similar to Seq and MSeq, but may be better
suited to some use cases.
- Alternatives to
Seq:Data.Sequence.SeqfromcontainersData.RRBVector.Vectorfromrrb-vector
- Alternatives to
MSeq:Data.FingerTree.FingerTreefromfingertree
For a detailed comparison, see here.
Acknowledgements
The interface and implementation of seqn is largely influenced by
the libraries containers and
fingertree.