Skip to content

Commit 6ca70f3

Browse files
committed
chore: expo
1 parent 1522443 commit 6ca70f3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/common/Common.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ export class CaseInsensitiveStringMap {
5858
return a / b;
5959
}
6060

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+
6171
// Set a key-value pair, normalizing the key to lowercase
6272
public set(key: string, value: string): void {
6373
this.map.set(key.toLowerCase(), value);

0 commit comments

Comments
 (0)