Expand description
Merger implementations for the merge batcher.
The InternalMerge trait allows containers to merge sorted, consolidated
data using internal iteration. The InternalMerger type implements the
Merger trait using InternalMerge, and is the standard merger for all
container types.
Modules§
- columnation_
internal - Implementation of
InternalMergeforTimelyStack<(D, T, R)>. - vec_
internal - Implementation of
InternalMergeforVec<(D, T, R)>.
Structs§
- Internal
Merger - A merger that uses internal iteration via
InternalMerge. - VecMerger
- A
Mergerimplementation forVec<(D, T, R)>that drains owned inputs.
Traits§
- Internal
Merge - A container that supports the operations needed by the merge batcher: merging sorted chains and extracting updates by time.
Type Aliases§
- ColInternal
Merger - A
Mergerusing internal iteration forTimelyStackcontainers. - VecInternal
Merger - A
MergerforVeccontainers, which contain owned data and need special treatment.