import * as check from "../../../../generated/sync/check/maybe/array"; export function isMaybeArray (mixed : any) : mixed is null|undefined|(any[]) { return check.checkMaybeArray(mixed) === undefined; } export function isMaybeMinLength (mixed : any, min : number) : mixed is null|undefined|(any[]) { return check.checkMaybeMinLength(mixed, min) === undefined; } export function isMaybeMaxLength (mixed : any, max : number) : mixed is null|undefined|(any[]) { return check.checkMaybeMaxLength(mixed, max) === undefined; } export function isMaybeLength (mixed : any, args : { min? : number, max? : number }) : mixed is null|undefined|(any[]) { return check.checkMaybeLength(mixed, args) === undefined; } export function isMaybeNonEmpty (mixed : any) : mixed is null|undefined|(any[]) { return check.checkMaybeNonEmpty(mixed) === undefined; } export function isMaybeContains (mixed : any, x : any) : mixed is null|undefined|(any[]) { return check.checkMaybeContains(mixed, x) === undefined; } export function isMaybeNoDuplicate (mixed : any) : mixed is null|undefined|(any[]) { return check.checkMaybeNoDuplicate(mixed) === undefined; }