import * as check from "../../../../../generated/sync/check/array-of/string-format/number"; export function isArrayOfPotentiallyUnsafeNumberString (mixed : any) : mixed is (string)[] { return check.checkArrayOfPotentiallyUnsafeNumberString(mixed) === undefined; } export function isArrayOfFiniteNumberString (mixed : any) : mixed is (string)[] { return check.checkArrayOfFiniteNumberString(mixed) === undefined; } export function isArrayOfIntegerString (mixed : any) : mixed is (string)[] { return check.checkArrayOfIntegerString(mixed) === undefined; } export function isArrayOfGreaterThanString (mixed : any, x : number) : mixed is (string)[] { return check.checkArrayOfGreaterThanString(mixed, x) === undefined; } export function isArrayOfGreaterThanOrEqualString (mixed : any, x : number) : mixed is (string)[] { return check.checkArrayOfGreaterThanOrEqualString(mixed, x) === undefined; } export function isArrayOfLessThanString (mixed : any, x : number) : mixed is (string)[] { return check.checkArrayOfLessThanString(mixed, x) === undefined; } export function isArrayOfLessThanOrEqualString (mixed : any, x : number) : mixed is (string)[] { return check.checkArrayOfLessThanOrEqualString(mixed, x) === undefined; } export function isArrayOfRangeString (mixed : any, args : { min? : number, max? : number }) : mixed is (string)[] { return check.checkArrayOfRangeString(mixed, args) === undefined; } export function isArrayOfPositiveString (mixed : any) : mixed is (string)[] { return check.checkArrayOfPositiveString(mixed) === undefined; } export function isArrayOfNegativeString (mixed : any) : mixed is (string)[] { return check.checkArrayOfNegativeString(mixed) === undefined; } export function isArrayOfNonNegativeString (mixed : any) : mixed is (string)[] { return check.checkArrayOfNonNegativeString(mixed) === undefined; } export function isArrayOfNaturalNumberString (mixed : any) : mixed is (string)[] { return check.checkArrayOfNaturalNumberString(mixed) === undefined; } export function isArrayOfOddString (mixed : any) : mixed is (string)[] { return check.checkArrayOfOddString(mixed) === undefined; } export function isArrayOfEvenString (mixed : any) : mixed is (string)[] { return check.checkArrayOfEvenString(mixed) === undefined; } export function isArrayOfNotOneOfString (mixed : any, arr : T[]) : mixed is (string)[] { return check.checkArrayOfNotOneOfString(mixed, arr) === undefined; } export function isArrayOfLatitudeString (mixed : any) : mixed is (string)[] { return check.checkArrayOfLatitudeString(mixed) === undefined; } export function isArrayOfLongitudeString (mixed : any) : mixed is (string)[] { return check.checkArrayOfLongitudeString(mixed) === undefined; }