import { IterationOf } from '../Iteration/IterationOf'; import { Iteration } from '../Iteration/Iteration'; /** * @hidden */ export declare type _IsZero = { '-': 0; '+': 0; '0': 1; }[N[1]]; /** * Check whether a [[Number]] is null or not * @param N to check * @returns [[Boolean]] * @example * ```ts * import {N} from 'ts-toolbelt' * * type test0 = N.IsZero<'0'> // True * type test1 = N.IsZero<'-7'> // False * type test2 = N.IsZero<'7'> // False * ``` */ export declare type IsZero = _IsZero>;