quantitivecalc
Version:
A TypeScript library providing advanced quantitative finance functions for risk analysis, performance metrics, and technical indicators. (Currently in development)
8 lines • 361 B
TypeScript
/**
* Returns a new array with the first element removed (does not mutate the original list).
*
* @param list - The array to remove the first item from.
* @returns A new array without the first element, or undefined if the list is empty.
*/
export default function deleteFirstRow<T>(list: T[]): T[] | undefined;
//# sourceMappingURL=deleteFirstRow.d.ts.map