-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb8f45a
commit 65b9290
Showing
2 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
Package: dotty | ||
Type: Package | ||
Title: The Destructuring Dot Operator | ||
Title: The Unpacking Dot Operator | ||
Version: 0.1.0 | ||
Author: Kevin Ushey | ||
Maintainer: Kevin Ushey <[email protected]> | ||
Description: Enables destructuring assignments in R, through the use of a | ||
special `.` object. | ||
Authors@R: c( | ||
person( | ||
"Kevin", "Ushey", | ||
email = "[email protected]", | ||
role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0003-2880-7407") | ||
) | ||
) | ||
Description: Provides a `.` object which can be used for unpacking | ||
assignments. For example, `.[nr, nc] <- dim(mtcars)` could be used to | ||
pull the number of rows and number of columns from `dim(mtcars)` into | ||
individual variables `nr` and `nc` in a single step. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.3.2 | ||
Suggests: | ||
codetools, | ||
testthat (>= 3.0.0) | ||
codetools, | ||
testthat (>= 3.0.0) | ||
Config/testthat/edition: 3 | ||
URL: https://kevinushey.github.io/dotty/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters