pipebase 0.2.0

A tokio based runtime library for data integration app
Documentation
1
2
3
4
5
6
7
8
9
use std::iter::FromIterator;

/// Split T into Collection(V) of U
pub trait Split<T, U, V>
where
    V: FromIterator<U>,
{
    fn split(t: T, pattern: &str) -> V;
}