import { ClassForEach } from "https://deno.land/x/easyts@0.1.3/internal/decorator.ts";
Methods
find(callback: ValidCallback<T>, reverse?: boolean): boolean
Traverse the container looking for elements until the callback returns true, then stop looking
forEach(callback: ValueCallback<T>, reverse?: boolean): void
call callback on each element in the container in turn
has(): boolean
Returns whether the data data exists in the container
join<TO>(): string
Adds all the elements of an container into a string, separated by the specified separator string.
map<TO>(callback: MapCallback<T, TO>, reverse?: boolean): Array<TO>
Convert container to array