Uses of Class
com.vladsch.flexmark.util.sequence.SegmentedSequence
-
Packages that use SegmentedSequence Package Description com.vladsch.flexmark.util.sequence -
-
Uses of SegmentedSequence in com.vladsch.flexmark.util.sequence
Subclasses of SegmentedSequence in com.vladsch.flexmark.util.sequence Modifier and Type Class Description class
SegmentedSequenceFull
A BasedSequence which consists of segments of other BasedSequences NOTE: very efficient for random access but extremely wasteful with space by allocating 4 bytes per character in the sequence with corresponding construction penalty use SegmentedSequenceTree which is binary tree based segmented sequence with minimal overhead and optimized to give penalty free random access for most applications.class
SegmentedSequenceTree
A BasedSequence which consists of segments of other BasedSequences NOTE: very efficient for random access but extremely wasteful with space by allocating 4 bytes per character in the sequence with corresponding construction penalty use SegmentedSequenceTree which is binary tree based segmented sequence with minimal overhead and optimized to give penalty free random access for most applications.
-