Function conch_runtime::eval::concat
[−]
[src]
pub fn concat<W, I, E: ?Sized>(
words: I,
env: &E,
cfg: WordEvalConfig
) -> Concat<W, I::IntoIter, E> where
W: WordEval<E>,
I: IntoIterator<Item = W>,
Creates a future adapter which concatenates multiple words together.
All words will be concatenated together in the same field, however,
intermediate At, Star, and Split fields will be handled as follows:
the first newly generated field will be concatenated to the last existing
field, and the remainder of the newly generated fields will form their own
distinct fields.