zero {frab} | R Documentation |
The zero frab object
Description
Test for a frab
object's being zero (empty).
Usage
zero(...)
is.zero(x)
is.empty(x)
Arguments
x |
Object of class |
... |
Further arguments (currently ignored) |
Details
Function zero()
returns the empty frab
object; this is
the additive identity 0
with property x+0=0+x=x
.
Function is.zero()
returns TRUE
if its argument is
indeed the zero object.
Function is.empty()
is a synonym for is.zero()
.
Sometimes one is thinking about the free Abelian group, in which case
is.zero()
makes more sense, and sometimes one is thinking about
maps and tables, in which case is.empty()
is more appropriate.
Value
Function zero()
returns the zero frab object, function
is.zero()
a Boolean
Author(s)
Robin K. S. Hankin
Examples
zero()
zero() + zero()
x <- rfrab()
x+zero() == x
is.zero(zero())
[Package frab version 0.0-6 Index]