Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ src/*.dll
src/Makevars
tests/testthat/*bin
tests/testthat/*desc
*.bin
*.desc
2 changes: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ License: LGPL-3 | Apache License 2.0
URL: http://www.bigmemory.org
LazyLoad: yes
Biarch: yes
VignetteBuilder: knitr
Suggests: knitr, testthat
3 changes: 3 additions & 0 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ GetTypeString <- function(bigMatAddr) {
.Call('bigmemory_GetTypeString', PACKAGE = 'bigmemory', bigMatAddr)
}

#' @title big.matrix size
#' @description Returns the size of the created matrix in bytes
#' @param bigMat a \code{big.matrix} object
#' @export
GetMatrixSize <- function(bigMat) {
.Call('bigmemory_GetMatrixSize', PACKAGE = 'bigmemory', bigMat)
Expand Down
Loading