import { Collection } from "https://deno.land/x/revoltio@v1.0.0/deps.ts";
Checks if all items passes a test. Identical in behavior to Array.every().
Examples
collection.every(user => !user.bot);
collection.every(user => !user.bot);
Parameters
fn: () => key is K2
value: V,
key: K,
collection: this,
Function used to test (should return a boolean)
Returns
this is Collection<K2, V>
Parameters
fn: () => value is V2
value: V,
key: K,
collection: this,
Returns
this is Collection<K, V2>