memuse (version 4.2-3)

sum,memuse-method: memuse Arithmetic

Description

Binary arithmetic operations for memuse objects.

Usage

# S4 method for memuse
sum(x, ..., na.rm = FALSE)

Value

Returns a memuse class object.

Arguments

x

A memuse object.

...

Additional arguments

na.rm

Whether NA's should be ignored.

Details

Simple arithmetic reductions.

See Also

Constructor memuse-class

Examples

Run this code
if (FALSE) {
x = mu(2000)
y = mu(5000)

sum(x, y)

### Mixing numeric and memuse objects will work, but the first one must be a
### memuse object.
sum(mu(10), 10) # This will work
sum(10, mu(10)) # This will not
}

Run the code above in your browser using DataLab