flow like the river

This commit is contained in:
root 2025-11-07 00:06:12 +01:00
commit 013fe673f3
42435 changed files with 5764238 additions and 0 deletions

View file

@ -0,0 +1,45 @@
declare function factorial(a: number): number;
declare function power(a: number, b: number): number;
declare function sqrt(a: number): number;
declare const exponentialSymbols: {
symbols: {
'!': {
postfix: {
symbol: '!';
f: factorial;
notation: 'postfix';
precedence: 6;
rightToLeft: 0;
argCount: 1;
};
symbol: '!';
regSymbol: '!';
};
'^': {
infix: {
symbol: '^';
f: power;
notation: 'infix';
precedence: 5;
rightToLeft: 1;
argCount: 2;
};
symbol: '^';
regSymbol: '\\^';
};
sqrt: {
func: {
symbol: 'sqrt';
f: sqrt;
notation: 'func';
precedence: 0;
rightToLeft: 0;
argCount: 1;
};
symbol: 'sqrt';
regSymbol: 'sqrt\\b';
};
};
};
export default exponentialSymbols;