pub fn btree_set<P, V>(parser: P) -> MapParser<P, Collect<BTreeSet<V>>>where P: Parser, P::Output: IntoIterator<Item = V>,
Convert the output of parser from a Vec<V> or other collection into a BTreeSet.
parser
Vec<V>
BTreeSet