13 lines
216 B
Markdown
13 lines
216 B
Markdown
# Collection
|
|
|
|
Is a [Iterable] with known `size`, a finite [Iterable]:
|
|
|
|
class Collection : Iterable {
|
|
val size
|
|
}
|
|
|
|
See [List], [Set] and [Iterable]
|
|
|
|
[Iterable]: Iterable.md
|
|
[List]: List.md
|
|
[Set]: Set.md |