export function add(...args: any[]): any {
    return __mathop(add, (acc, x: number) => acc + x, 0, args);
}