Skip to content

Commit 24a7bbd

Browse files
Refresh.
1 parent 4763aee commit 24a7bbd

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Instead of loading entire sets into arrays or other collections, iterables allow
125125
`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.
126126

127127
`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.
129129

130130
### Filters
131131

@@ -139,7 +139,7 @@ Any function that receives an `Iterable<T>` and returns an `Iterable<T>` is cons
139139
`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.
140140

141141
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.
143143

144144
### Transforms
145145

@@ -156,7 +156,7 @@ Any function that receives an `Iterable<T>` and returns an `Iterable<TResult>` i
156156
Any filter can be used as a transform, but not every transform can be used as a filter.
157157

158158
`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.
160160

161161
### Resolutions
162162

@@ -189,7 +189,7 @@ A resolution is a transform that takes an `Iterable<T>` and returns `TResult`.
189189
Unlike `.filter(a)` and `.transform(x)`, `.resolve(r)` does not wrap the result in another `Linq<T>`.
190190

191191
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.
193193

194194
## History
195195

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@
7777
},
7878
"dependencies": {
7979
"@tsdotnet/common-interfaces": "^1.0.4",
80-
"@tsdotnet/compare": "^1.3.20",
80+
"@tsdotnet/compare": "^1.3.21",
8181
"@tsdotnet/exceptions": "^1.0.18",
8282
"@tsdotnet/integer": "^1.0.14",
83-
"@tsdotnet/linked-node-list": "^1.3.18",
84-
"@tsdotnet/memoize": "^1.0.9",
85-
"@tsdotnet/queue": "^1.2.6",
83+
"@tsdotnet/linked-node-list": "^1.3.19",
84+
"@tsdotnet/memoize": "^1.0.10",
85+
"@tsdotnet/queue": "^1.2.7",
8686
"tslib": "^2.3.1"
8787
}
8888
}

pnpm-lock.yaml

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)