object SchemeOps
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SchemeOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- type BinaryOperator = SchemeOps.BinaryOperator.Value
- type UnaryOperator = SchemeOps.UnaryOperator.Value
Value Members
-
def
modulo(n1: Int, n2: Int): Int
Modulo in Scheme and Scala are different.
Modulo in Scheme and Scala are different. This implements the same behavior as Scheme's modulo
- def random(n: Double): Double
- def random(n: Int): Int
-
def
remainder(n1: Int, n2: Int): Int
Remainder in Scheme has the same behavior of Scala's modulo.
-
def
round(n: Double): Double
Round in Scheme and Scala are different.
Round in Scheme and Scala are different. This implements the same behaviour as Scheme's round.
-
object
BinaryOperator extends Enumeration
Binary operations that should be supported by lattices
-
object
UnaryOperator extends Enumeration
These are the unary operations that should be supported by Scheme lattices