valueFroms method
Get all values link to val
(Optional) Only if it matches any of anyTags
and matches all items in allTags
Implementation
Iterable valueFroms(val, key,
{List anyTags = const [], List allTags = const []}) {
final _v = _map_add_or_get(val, _newNode);
final bool Function(Maybe) where = anyTags.isEmpty && allTags.isEmpty
? (m) => m is Some
: (m) => m is Some
? _check_all_any_val_tags(_v, m.val, key,
anyTags: anyTags, allTags: allTags)
: false;
return _v.from.map((n) => n.tryGet(_v, key)).where(where).map((s) => s.val);
}