Updated smnp.collection (markdown)

Bartłomiej Przemysław Pluta
2020-03-26 19:49:37 +01:00
parent 0d1a1f6d06
commit 8493395629

@@ -67,6 +67,16 @@ println(x);
# C4:(1/4) :: D4:(1/4) :: 14 :: 3.14 :: true
```
## `list.sublist(beginIndex: int, endIndex: int)`
Returns a sublist.
### Example
```
x = ["a", "b", "c", "d", "e", "f", "g", "h"];
println(x.sublist(3, 6)); # [d, e, f]
```
## `list.isEmpty()`
Checks if list doesn't contain any element.