Skip to content

Commit

Permalink
re-introduce tuple of vectors
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Apr 28, 2019
1 parent 03982f0 commit c8f7f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/lib/indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ If it is not performed a description explicitly mentions that the data is assign
* `length(v)` must be equal to `length(cols)`
* column names in `v` must be the same as selected by `cols`
* an operation `df[row, col] = v[col]` for `col in cols` is performed
* if `v` is a `AbstractVector{<:AbstractVector}`:
* if `v` is a `AbstractVector{<:AbstractVector}` or `NTuple{N,AbstractVector}`:
* `length(v)` must be equal to `length(cols)`
* an operation `df[row, col] = v[i]` for `(i, col) in enumerate(cols)` is performed
* otherwise an error is thrown
Expand Down

0 comments on commit c8f7f49

Please sign in to comment.