reformat code

This commit is contained in:
yhh
2020-07-28 16:25:20 +08:00
parent 5994f0bee3
commit 514572f291
103 changed files with 2896 additions and 2839 deletions

View File

@@ -6,16 +6,16 @@ module es {
public first: T;
public second: T;
constructor(first: T, second: T){
constructor(first: T, second: T) {
this.first = first;
this.second = second;
}
public clear(){
public clear() {
this.first = this.second = null;
}
public equals(other: Pair<T>){
public equals(other: Pair<T>) {
return this.first == other.first && this.second == other.second;
}
}