import { Collection } from "https://deno.land/x/harmony@v2.6.0/src/utils/collection.ts";
Enhanced Map with various utility functions
Methods
Check if every value/key in Collection satisfies callback
Filter out the Collection using callback
Find a value from Collection using callback
Reduce the Collection to a single value
Check if any of the values/keys in Collection satisfies callback
Static Methods
fromObject<V>(object: { [key: string]: V; }): Collection<string, V>
Create a Collection from an Object