Function btree_set

Source
pub fn btree_set<P, V>(parser: P) -> MapParser<P, Collect<BTreeSet<V>>>
where P: Parser, P::Output: IntoIterator<Item = V>,
Expand description

Convert the output of parser from a Vec<V> or other collection into a BTreeSet.