UNPKG

hyperformula

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

12 lines (11 loc) 368 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { Maybe } from './Maybe'; export declare function empty<T>(): IterableIterator<T>; export declare function split<T>(iterable: IterableIterator<T>): { value?: T; rest: IterableIterator<T>; }; export declare function first<T>(iterable: IterableIterator<T>): Maybe<T>;