Arithmetic

trait Arithmetic extends Adder with Subtractor with Multiplier with Divider with Modulo with UnaryMinuser
trait Modulo
trait Divider
trait Adder
class Object
trait Matchable
class Any

Value members

Inherited methods

def add(lhs: Cell, rhs: Cell): Either[Throwable, Cell]
Inherited from:
Adder
def div(lhs: Cell, rhs: Cell): Either[Throwable, Cell]
Inherited from:
Divider
def mod(lhs: Cell, rhs: Cell): Either[Throwable, Cell]
Inherited from:
Modulo
def mul(lhs: Cell, rhs: Cell): Either[Throwable, Cell]
Inherited from:
Multiplier
def sub(lhs: Cell, rhs: Cell): Either[Throwable, Cell]
Inherited from:
Subtractor
def unaryMinus(value: Cell): Either[Throwable, Cell]
Inherited from:
UnaryMinuser