Skip to content

Commit

Permalink
export split.data.table, closes #2920 (#2921)
Browse files Browse the repository at this point in the history
  • Loading branch information
jangorecki authored and mattdowle committed Aug 17, 2018
1 parent c3562ca commit 446c86b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ S3method(as.matrix, data.table)
#S3method(cbind, data.table)
#S3method(rbind, data.table)
export(.rbind.data.table)
S3method(split, data.table)
S3method(dim, data.table)
S3method(dimnames, data.table)
S3method("dimnames<-", data.table)
Expand All @@ -93,6 +92,8 @@ S3method(Ops, data.table)

S3method(anyDuplicated, data.table)

export(split.data.table)
S3method(split, data.table)
export(melt)
export(melt.data.table)
S3method(melt, data.table)
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ Warning message:
truncated to 3.
```

2. `split.data.table` method is now properly exported, [#2920](https://github.com/Rdatatable/data.table/issues/2920). But we don't recommend it because `split` copies all the pieces into new memory.


### Changes in v1.11.4 (on CRAN 27 May 2018)

Expand Down

0 comments on commit 446c86b

Please sign in to comment.