Module stream

Module stream 

Source
Expand description

Utilities for working with streams, like vec.

§Functions overview

Functions§

all_btree_map
Checks if all entries in the BTreeMap satisfy the predicate.
all_btree_map_keys
Checks if all keys in the BTreeMap satisfy the predicate.
all_btree_map_values
Checks if all values in the BTreeMap satisfy the predicate.
all_map
Checks if all entries in the HashMap satisfy the predicate.
all_map_keys
Checks if all keys in the HashMap satisfy the predicate.
all_map_values
Checks if all values in the HashMap satisfy the predicate.
all_set
Checks if all elements in the HashSet satisfy the predicate.
all_vec
Checks if all elements in the Vec satisfy the predicate.
map_vec
Convert all elements in the Vec to a new type.
try_all_map_keys
Checks if all keys in the HashMap satisfy the predicate (fallible ones accepted).
try_all_map_values
Checks if all values in the HashMap satisfy the predicate (fallible ones accepted).
try_btree_map
Checks if all entries in the BTreeMap satisfy the predicate (fallible ones accepted).
try_btree_map_keys
Checks if all keys in the BTreeMap satisfy the predicate (fallible ones accepted).
try_btree_map_values
Checks if all values in the BTreeMap satisfy the predicate (fallible ones accepted).
try_map
Checks if all entries in the HashMap satisfy the predicate (fallible ones accepted).
try_map_vec
Checks if all elements in the Vec satisfy the predicate (fallible ones accepted).
try_set
Checks if all elements in the HashSet satisfy the predicate (fallible ones accepted).
try_vec
Checks if all elements in the Vec satisfy the predicate (fallible ones accepted).