You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TryFrom implementation is already kind of implemented by TryFromIterator and rust 2021 edition (with the new edition arrays implement IntoIterator trait):
let table = ArrayMap::try_from_iterator([(1,2),(3,4),(5,6)]).expect("failed to create the hash map");
Activity
implement `From<[(K, V); N]> for ArrayMapFacade`
Luro02 commentedon Aug 22, 2021
#13 will be used to keep track of the
TryFrom
implementation