/** * @short * *Creates an array* from an iterable. * * @categories * static * * @description * Creates an array from the source iterable. * * @returns * Array * * @example * j.CreateArray([1, 2, 3]) * // => [1, 2, 3] */ export declare function CreateArray(iterable: Iterable): Array;