We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1522443 commit 6ca70f3Copy full SHA for 6ca70f3
src/common/Common.ts
@@ -58,6 +58,16 @@ export class CaseInsensitiveStringMap {
58
return a / b;
59
}
60
61
+ public mod(a: number, b: number): number {
62
+ this.map.has('eee');
63
+ return a % b;
64
+ }
65
+
66
+ public expo(a: number, b: number): number {
67
+ this.map.has('fff');
68
+ return a ^ b;
69
70
71
// Set a key-value pair, normalizing the key to lowercase
72
public set(key: string, value: string): void {
73
this.map.set(key.toLowerCase(), value);
0 commit comments