Struct tantivy_fst::raw::OpBuilder
source · pub struct OpBuilder<'f> { /* private fields */ }
Expand description
A builder for collecting fst streams on which to perform set operations on the keys of fsts.
Set operations include intersection, union, difference and symmetric difference. The result of each set operation is itself a stream that emits pairs of keys and a sequence of each occurrence of that key in the participating streams. This information allows one to perform set operations on fsts and customize how conflicting output values are handled.
All set operations work efficiently on an arbitrary number of streams with memory proportional to the number of streams.
The algorithmic complexity of all set operations is O(n1 + n2 + n3 + ...)
where n1, n2, n3, ...
correspond to the number of elements in each
stream.
The 'f
lifetime parameter refers to the lifetime of the underlying set.
Implementations§
source§impl<'f> OpBuilder<'f>
impl<'f> OpBuilder<'f>
sourcepub fn add<I, S>(self, stream: I) -> Selfwhere
I: for<'a> IntoStreamer<'a, Into = S, Item = (&'a [u8], Output)>,
S: 'f + for<'a> Streamer<'a, Item = (&'a [u8], Output)>,
pub fn add<I, S>(self, stream: I) -> Selfwhere I: for<'a> IntoStreamer<'a, Into = S, Item = (&'a [u8], Output)>, S: 'f + for<'a> Streamer<'a, Item = (&'a [u8], Output)>,
Add a stream to this set operation.
This is useful for a chaining style pattern, e.g.,
builder.add(stream1).add(stream2).union()
.
The stream must emit a lexicographically ordered sequence of key-value pairs.
sourcepub fn push<I, S>(&mut self, stream: I)where
I: for<'a> IntoStreamer<'a, Into = S, Item = (&'a [u8], Output)>,
S: 'f + for<'a> Streamer<'a, Item = (&'a [u8], Output)>,
pub fn push<I, S>(&mut self, stream: I)where I: for<'a> IntoStreamer<'a, Into = S, Item = (&'a [u8], Output)>, S: 'f + for<'a> Streamer<'a, Item = (&'a [u8], Output)>,
Add a stream to this set operation.
The stream must emit a lexicographically ordered sequence of key-value pairs.
sourcepub fn chain(self) -> Chain<'f>
pub fn chain(self) -> Chain<'f>
Performs a chain operation on all streams that have been added.
Panics when no streams have been added.
sourcepub fn union(self) -> Union<'f>
pub fn union(self) -> Union<'f>
Performs a union operation on all streams that have been added.
Note that this returns a stream of (&[u8], &[IndexedValue])
. The
first element of the tuple is the byte string key. The second element
of the tuple is a list of all occurrences of that key in participating
streams. The IndexedValue
contains an index and the value associated
with that key in that stream. The index uniquely identifies each
stream, which is an integer that is auto-incremented when a stream
is added to this operation (starting at 0
).
sourcepub fn intersection(self) -> Intersection<'f>
pub fn intersection(self) -> Intersection<'f>
Performs an intersection operation on all streams that have been added.
Note that this returns a stream of (&[u8], &[IndexedValue])
. The
first element of the tuple is the byte string key. The second element
of the tuple is a list of all occurrences of that key in participating
streams. The IndexedValue
contains an index and the value associated
with that key in that stream. The index uniquely identifies each
stream, which is an integer that is auto-incremented when a stream
is added to this operation (starting at 0
).
sourcepub fn difference(self) -> Difference<'f>
pub fn difference(self) -> Difference<'f>
Performs a difference operation with respect to the first stream added. That is, this returns a stream of all elements in the first stream that don’t exist in any other stream that has been added.
Note that this returns a stream of (&[u8], &[IndexedValue])
. The
first element of the tuple is the byte string key. The second element
of the tuple is a list of all occurrences of that key in participating
streams. The IndexedValue
contains an index and the value associated
with that key in that stream. The index uniquely identifies each
stream, which is an integer that is auto-incremented when a stream
is added to this operation (starting at 0
).
sourcepub fn symmetric_difference(self) -> SymmetricDifference<'f>
pub fn symmetric_difference(self) -> SymmetricDifference<'f>
Performs a symmetric difference operation on all of the streams that have been added.
When there are only two streams, then the keys returned correspond to keys that are in either stream but not in both streams.
More generally, for any number of streams, keys that occur in an odd number of streams are returned.
Note that this returns a stream of (&[u8], &[IndexedValue])
. The
first element of the tuple is the byte string key. The second element
of the tuple is a list of all occurrences of that key in participating
streams. The IndexedValue
contains an index and the value associated
with that key in that stream. The index uniquely identifies each
stream, which is an integer that is auto-incremented when a stream
is added to this operation (starting at 0
).
Trait Implementations§
source§impl<'f, I, S> Extend<I> for OpBuilder<'f>where
I: for<'a> IntoStreamer<'a, Into = S, Item = (&'a [u8], Output)>,
S: 'f + for<'a> Streamer<'a, Item = (&'a [u8], Output)>,
impl<'f, I, S> Extend<I> for OpBuilder<'f>where I: for<'a> IntoStreamer<'a, Into = S, Item = (&'a [u8], Output)>, S: 'f + for<'a> Streamer<'a, Item = (&'a [u8], Output)>,
source§fn extend<T>(&mut self, it: T)where
T: IntoIterator<Item = I>,
fn extend<T>(&mut self, it: T)where T: IntoIterator<Item = I>,
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)