java.lang.Object
org.eclipse.jgit.diff.HashedSequencePair<S>
- Type Parameters:
S
- the base sequence type.
Wraps two
Sequence
instances to cache their
element hash codes.
This pair wraps two sequences that contain cached hash codes for the input sequences.
-
Constructor Summary
ConstructorsConstructorDescriptionHashedSequencePair
(SequenceComparator<? super S> cmp, S a, S b) Construct a pair to provide fast hash codes. -
Method Summary
-
Constructor Details
-
HashedSequencePair
Construct a pair to provide fast hash codes.- Parameters:
cmp
- the base comparator for the sequence elements.a
- the A sequence.b
- the B sequence.
-
-
Method Details
-
getComparator
Get comparator- Returns:
- obtain a comparator that uses the cached hash codes
-
getA
Get A- Returns:
- wrapper around A that includes cached hash codes
-
getB
Get B- Returns:
- wrapper around B that includes cached hash codes
-