Skip to content

Commit eb0dba0

Browse files
committed
bump version
1 parent b23dcf1 commit eb0dba0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "InMemoryDatasets"
22
uuid = "5c01b14b-ab03-46ff-b164-14c663efdd9f"
33
authors = ["sl-solution <github.sl.solution@icloud.com> and contributors"]
4-
version = "0.7.6"
4+
version = "0.7.7"
55

66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"

docs/src/man/byrow.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ One special function that can be used as `fun` in the `byrow` function is `mapre
238238
## User defined operations
239239

240240
For user defined functions which return a single value, `byrow` treats each row as a vector of values, thus the user defined function must accept a vector and returns a single value.
241-
However, when user defines a multivariate function and pass a Tuple of column indices as the `cols` argument of `byrow`, the `byrow` function simply calls `fun.(ds[:, cols[1]], ds[:, cols2], ...)`.
241+
However, when user defines a multivariate function and pass a Tuple of column indices as the `cols` argument of `byrow`, the `byrow` function simply calls `fun.(ds[:, cols[1]], ds[:, cols2], ...)`. Currently, the `threads` keyword argument is not available for this case.
242+
242243
For instance to calculate `1 * col1 + 2 * col2 + 3 * col3` for each row in `ds` we can define the following function:
243244

244245
```jldoctest

0 commit comments

Comments
 (0)