You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ Instead of loading entire sets into arrays or other collections, iterables allow
125
125
`Iterable<T>` helpers are provided as sources. Calling for an `Iterator<T>` should always start from the beginning and iterators are not shared. Same behavior as LINQ in .NET.
126
126
127
127
`empty`, `range`, and `repeat` to name a few.
128
-
See the [docs](https://tsdotnet.github.io/linq/) for a full list.
128
+
See the [docs](https://tsdotnet.github.io/linq/modules/iterables.html) for a full list.
129
129
130
130
### Filters
131
131
@@ -139,7 +139,7 @@ Any function that receives an `Iterable<T>` and returns an `Iterable<T>` is cons
139
139
`IterableFilter<T>`. A filter may result in a different order or ultimately a completely different set than the input but must be of the same type.
140
140
141
141
There are an extensive set of filters.
142
-
See the [docs](https://tsdotnet.github.io/linq/) for a full list.
142
+
See the [docs](https://tsdotnet.github.io/linq/modules/filters.html) for a full list.
143
143
144
144
### Transforms
145
145
@@ -156,7 +156,7 @@ Any function that receives an `Iterable<T>` and returns an `Iterable<TResult>` i
156
156
Any filter can be used as a transform, but not every transform can be used as a filter.
157
157
158
158
`notNull`, `rows`, `select`, `selectMany` and `groupBy` to name a few.
159
-
See the [docs](https://tsdotnet.github.io/linq/) for a full list.
159
+
See the [docs](https://tsdotnet.github.io/linq/modules/transforms.html) for a full list.
160
160
161
161
### Resolutions
162
162
@@ -189,7 +189,7 @@ A resolution is a transform that takes an `Iterable<T>` and returns `TResult`.
189
189
Unlike `.filter(a)` and `.transform(x)`, `.resolve(r)` does not wrap the result in another `Linq<T>`.
190
190
191
191
There are an extensive set of resolutions.
192
-
See the [docs](https://tsdotnet.github.io/linq/) for a full list.
192
+
See the [docs](https://tsdotnet.github.io/linq/modules/resolutions.html) for a full list.
0 commit comments