File tree Expand file tree Collapse file tree 6 files changed +8
-2
lines changed Expand file tree Collapse file tree 6 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 4
4
*
5
5
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/first/~/first first} to get the first element.
6
6
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/last/~/last last} to get the last element.
7
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/async/nth/~/nth nth} to get the n-th element.
7
8
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/filter/~/filter filter} to filter elements.
8
9
* Use {@linkcode https://jsr.io/@core/iterutil/doc/find/~/find find} to find elements synchronously.
9
10
*
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Returns the first element of an iterable. If the iterable is empty, returns `undefined`.
3
3
*
4
- * Use {@linkcode https://jsr.io/@core/iterutil/doc/async/last/~/last last} to get the last element of an iterable.
4
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/async/last/~/last last} to get the last element.
5
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/async/nth/~/nth nth} to get the n-th element.
5
6
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/find/~/find find} to get the first element that matches a predicate.
6
7
* Use {@linkcode https://jsr.io/@core/iterutil/doc/first/~/first first} to get the first element synchronously.
7
8
*
Original file line number Diff line number Diff line change 2
2
* Returns the last element of an iterable.
3
3
*
4
4
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/first/~/first first} to get the first element.
5
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/async/nth/~/nth nth} to get the n-th element.
5
6
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/find/~/find find} to find an element.
6
7
* Use {@linkcode https://jsr.io/@core/iterutil/doc/last/~/last last} to get the last element synchronously.
7
8
*
Original file line number Diff line number Diff line change 4
4
*
5
5
* Use {@linkcode https://jsr.io/@core/iterutil/doc/first/~/first first} to get the first element.
6
6
* Use {@linkcode https://jsr.io/@core/iterutil/doc/last/~/last last} to get the last element.
7
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/nth/~/nth nth} to get the n-th element.
7
8
* Use {@linkcode https://jsr.io/@core/iterutil/doc/filter/~/filter filter} to filter elements.
8
9
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/find/~/find find} to find elements asynchronously.
9
10
*
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Returns the first element of an iterable. If the iterable is empty, returns `undefined`.
3
3
*
4
- * Use {@linkcode https://jsr.io/@core/iterutil/doc/last/~/last last} to get the last element of an iterable.
4
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/last/~/last last} to get the last element.
5
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/nth/~/nth nth} to get the n-th element.
5
6
* Use {@linkcode https://jsr.io/@core/iterutil/doc/find/~/find find} to get the first element that matches a predicate.
6
7
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/first/~/first first} to get the first element asynchronously.
7
8
*
Original file line number Diff line number Diff line change 2
2
* Returns the last element of an iterable.
3
3
*
4
4
* Use {@linkcode https://jsr.io/@core/iterutil/doc/first/~/first first} to get the first element.
5
+ * Use {@linkcode https://jsr.io/@core/iterutil/doc/nth/~/nth nth} to get the n-th element.
5
6
* Use {@linkcode https://jsr.io/@core/iterutil/doc/find/~/find find} to find an element.
6
7
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/last/~/last last} to get the last element asynchronously.
7
8
*
You can’t perform that action at this time.
0 commit comments