/** * @short * Get *last* value. * * @categories * static trigger * * @description * Iterate through the iterable and return the last yielded value. If the * iterable is empty, `undefined` is returned. * * @returns * T | undefined * * @example * j.Last([1, 2, 3, 4]) * // => 4 * * @example * j.Last([]) * // => undefined */ export declare function Last(iterable: Iterable): T | undefined;