Packages

o

SchemeOps

object SchemeOps

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SchemeOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type BinaryOperator = SchemeOps.BinaryOperator.Value
  2. type UnaryOperator = SchemeOps.UnaryOperator.Value

Value Members

  1. 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

  2. def random(n: Double): Double
  3. def random(n: Int): Int
  4. def remainder(n1: Int, n2: Int): Int

    Remainder in Scheme has the same behavior of Scala's modulo.

  5. 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.

  6. object BinaryOperator extends Enumeration

    Binary operations that should be supported by lattices

  7. object UnaryOperator extends Enumeration

    These are the unary operations that should be supported by Scheme lattices