UNPKG
pisces-data-structure
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
pisces-data-structure
/
src
/
types
/
IList.ts
13 lines
(10 loc)
•
191 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * 线性结构接口 */
interface
IList
<
T
> { isEmpty(): boolean;
// 线性结构是否为空
get
size
(): number
;
// 线性结构的大小
} export { IList, };