新增fastList、注释完善
This commit is contained in:
8
source/src/Utils/IEquatable.ts
Normal file
8
source/src/Utils/IEquatable.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
module es {
|
||||
/**
|
||||
* 实现该接口用于判定两个对象是否相等的快速接口
|
||||
*/
|
||||
export interface IEquatable<T> {
|
||||
equals(other: T): boolean;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user