Trait sxpres::SplitOnTag
source · pub trait SplitOnTag {
// Required method
fn split_on_tag(self) -> Vec<Vec<String>>;
}
Expand description
Split a Vec<String>
right on a tag, grouping them into a new
Vec<String>
. The result of this process is a Vec<Vec<String>>
,
a primite form of slide.
This trait is born because split methods of primitive str doesn’t work.