//#region src/Array/includesAll.d.ts /** * # includesAll * * ```ts * function Array.includesAll( * target: readonly T[], * values: Iterable>, * ): boolean * ``` * * Returns `true` if `array` contains all `values`, otherwise returns `false`. Supports iterables for the `values` parameter. * * ## Example * * ```ts [data-first] * import { Array } from "@monstermann/array"; * * Array.includesAll([1, 2, 3, 4], [2, 3]); // true * ``` * * ```ts [data-last] * import { Array } from "@monstermann/array"; * * pipe([1, 2, 3, 4], Array.includesAll([2, 3])); // true * ``` * */ declare const includesAll: { (values: Iterable>): (target: readonly T[]) => boolean; (target: readonly T[], values: Iterable>): boolean; }; //#endregion export { includesAll };