UNPKG
dastal
Version:
latest (5.0.0)
5.0.0
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
3.0.0
2.1.0
2.0.0
1.4.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Data Structures & Algorithms implementations
github.com/havelessbemore/dastal
havelessbemore/dastal
dastal
/
lib
/
src
/
collection
/
collection.d.ts
7 lines
(6 loc)
•
147 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
interface
Collection
<
T
>
extends
Iterable
<
T
> {
/** * The number of elements in the collection. */
readonly
size: number; }