pub fn always<A, K, V>(map: A) -> Always<A>where
A: IntoIterator<Item = (K, V)>,
Expand description
Converts an IntoIterator<Item = (K, V)>
into a SignalMap<Key = K, Value = V>
.
This will usually be a BTreeMap<K, V>
or Vec<(K, V)>
.
pub fn always<A, K, V>(map: A) -> Always<A>where
A: IntoIterator<Item = (K, V)>,
Converts an IntoIterator<Item = (K, V)>
into a SignalMap<Key = K, Value = V>
.
This will usually be a BTreeMap<K, V>
or Vec<(K, V)>
.