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