| Converters {memuse} | R Documentation |
Converter methods.
as.memuse(x, ...) ## S4 method for signature 'numeric' as.memuse(x, unit = .UNIT, unit.prefix = .PREFIX, unit.names = .NAMES) ## S4 method for signature 'object_size' as.memuse(x, unit = .UNIT, unit.prefix = .PREFIX, unit.names = .NAMES) ## S4 method for signature 'character' as.memuse(x, unit = .UNIT, unit.prefix = .PREFIX, unit.names = .NAMES) ## S4 method for signature 'memuse' as.character(x, ...) ## S4 method for signature 'memuse' as.numeric(x, as.is = FALSE)
x |
Numeric value, object_size data, or appropriate string (see details section for more information). |
... |
Additional arguments. |
unit |
|
unit.prefix |
|
unit.names |
|
as.is |
logical; should the size be "as-is", or converted to bytes first. |
These methods convert numeric, object_size, and string (character)
objects into memuse objects.
Strings must be of the same form as the printed output of a a memuse object. For example, "100 KiB" is valid, but "100 (KiB)" is not. As always, case of the unit is ignored, and so "100 kib" would be valid as well.
Returns a memuse object.
## Not run: as.memuse(10) ## End(Not run)