NUM

case NUM(x: NUMF)

Value members

Inherited methods

def all(f: ANY => Boolean): Boolean

Check if all elements of ANY satisfy function.

Check if all elements of ANY satisfy function.

Value parameters:
f

function to check with

Inherited from:
ANY
def allM(f: (ANY, ANY) => Boolean, g: ANY => Boolean): Boolean
Inherited from:
ANY
def any(f: ANY => Boolean): Boolean

Check if any elements of ANY satisfy function.

Check if any elements of ANY satisfy function.

Value parameters:
f

function to check with

Inherited from:
ANY
def anyM(f: (ANY, ANY) => Boolean, g: ANY => Boolean): Boolean
Inherited from:
ANY
def cmp(t: ANY): Int
Inherited from:
ANY
def combinations(n: Int): ANY
Inherited from:
ANY
def drop(n: Int): ANY

Drops n items from ANY. Negative n drops from the end.

Drops n items from ANY. Negative n drops from the end.

Value parameters:
n

number of items to drop

Inherited from:
ANY
def dropWhile(f: ANY => Boolean): ANY

Drop elements of ANY until function is no longer satisified.

Drop elements of ANY until function is no longer satisified.

Value parameters:
f

function to check with

Inherited from:
ANY
def dropWhileM(f: (ANY, ANY) => Boolean, g: ANY => Boolean): ANY
Inherited from:
ANY
def eql(t: ANY): Boolean
Inherited from:
ANY
def filter(f: ANY => Boolean): ANY

Filters elements of ANY with function.

Filters elements of ANY with function.

Value parameters:
f

function to filter with

Inherited from:
ANY
def filterM(f: (ANY, ANY) => Boolean, g: ANY => Boolean): ANY
Inherited from:
ANY
def find(f: ANY => Boolean): Option[ANY]
Inherited from:
ANY
def findM(f: (ANY, ANY) => Boolean, g: ANY => Boolean): Option[ANY | (ANY, ANY)]
Inherited from:
ANY
def flat: ANY
Inherited from:
ANY
def flatMap(f: ANY => ANY): ANY

Applies function over each element of ANY and flatten.

Applies function over each element of ANY and flatten.

Value parameters:
f

function to map with

Inherited from:
ANY
def flatMapM(f: (ANY, ANY) => ANY, g: ANY => ANY): ANY
Inherited from:
ANY
def foldLeft[T](a: T)(f: (T, ANY) => T): T
Inherited from:
ANY
def foldLeftM[T](a: T)(f: (T, (ANY, ANY)) => T, g: (T, ANY) => T): T
Inherited from:
ANY
def get(i: ANY): ANY

Gets ANY from ANY.

Gets ANY from ANY.

Value parameters:
i

index to retrieve

Inherited from:
ANY
def getType: String

Gets type name of ANY.

Gets type name of ANY.

Inherited from:
ANY
def has(t: ANY): Boolean
Inherited from:
ANY
def join(s: String): String
Inherited from:
ANY
def lFN(l: Int, env: ENV): FN

Converts ANY to FN at given line number.

Converts ANY to FN at given line number.

Value parameters:
env

context ENV to wrap FN

l

line number

Inherited from:
ANY
def length: Int

Gets length of ANY.

Gets length of ANY.

Inherited from:
ANY
def map(f: ANY => ANY): ANY

Applies function over each element of ANY.

Applies function over each element of ANY.

Value parameters:
f

function to map with

Inherited from:
ANY
def mapM(f: (ANY, ANY) => (ANY, ANY), g: ANY => ANY): ANY
Inherited from:
ANY
def num1(f: NUMF => NUMF, e: String): ANY
Inherited from:
ANY
def num1(f: NUMF => NUMF): ANY
Inherited from:
ANY
def num2(t: ANY, f: (NUMF, NUMF) => NUMF, e: String): ANY
Inherited from:
ANY
def num2(t: ANY, f: (NUMF, NUMF) => NUMF): ANY
Inherited from:
ANY
def num2a(t: ANY, f: (NUMF, NUMF) => Iterable[NUMF]): ANY
Inherited from:
ANY
def num2q(t: ANY, f: (NUMF, NUMF) => Iterator[NUMF]): ANY
Inherited from:
ANY
def optI: Option[Int]

Converts ANY to int without failing.

Converts ANY to int without failing.

Inherited from:
ANY
def optNUM: Option[NUM]

Converts ANY to NUM without failing.

Converts ANY to NUM without failing.

Inherited from:
ANY
def pFN(p: PATH): FN

Converts ANY to FN at given PATH.

Converts ANY to FN at given PATH.

Value parameters:
env

context ENV to wrap FN

p

PATH

Inherited from:
ANY
Inherited from:
ANY
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
Inherited from:
ANY
def sortBy(f: ANY => ANY): ANY
Inherited from:
ANY
def sortByM(f: (ANY, ANY) => ANY, g: ANY => ANY): ANY
Inherited from:
ANY
def sortWith(f: (ANY, ANY) => Boolean): ANY
Inherited from:
ANY
def sortWithM(f: (ANY, ANY, ANY, ANY) => Boolean, g: (ANY, ANY) => Boolean): ANY
Inherited from:
ANY
def str1(f: String => String): ANY
Inherited from:
ANY
def str1a(f: String => Iterable[String]): ANY
Inherited from:
ANY
def str2(t: ANY, f: (String, String) => String): ANY
Inherited from:
ANY
def str2a(t: ANY, f: (String, String) => Iterable[String]): ANY
Inherited from:
ANY
def str2q(t: ANY, f: (String, String) => Iterator[String]): ANY
Inherited from:
ANY
def strnum(t: ANY, f: (String, NUMF) => String): ANY
Inherited from:
ANY
def strnuma(t: ANY, f: (String, NUMF) => Iterator[String]): ANY
Inherited from:
ANY
def table(t: ANY, f: (ANY, ANY) => ANY): ANY
Inherited from:
ANY
def take(n: Int): ANY

Takes n items in ANY. Negative n takes from the end.

Takes n items in ANY. Negative n takes from the end.

Value parameters:
n

number of items to take

Inherited from:
ANY
def takeWhile(f: ANY => Boolean): ANY

Take elements of ANY until function is no longer satisified.

Take elements of ANY until function is no longer satisified.

Value parameters:
f

function to check with

Inherited from:
ANY
def takeWhileM(f: (ANY, ANY) => Boolean, g: ANY => Boolean): ANY
Inherited from:
ANY
def toARR: ARR

Converts ANY to ARR.

Converts ANY to ARR.

Inherited from:
ANY
def toBool: Boolean

Converts ANY to boolean.

Converts ANY to boolean.

Inherited from:
ANY
def toFN(env: ENV): FN

Converts ANY to FN.

Converts ANY to FN.

Value parameters:
env

context ENV to wrap FN

Inherited from:
ANY
def toForm: String

Converts ANY to formatted string.

Converts ANY to formatted string.

Inherited from:
ANY
def toI: Int

Converts ANY to int.

Converts ANY to int.

Inherited from:
ANY
def toMAP: MAP

Converts ANY to MAP.

Converts ANY to MAP.

Inherited from:
ANY
def toNUM: NUM

Converts ANY to NUM.

Converts ANY to NUM.

Inherited from:
ANY
def toSEQ: SEQ

Converts ANY to SEQ.

Converts ANY to SEQ.

Inherited from:
ANY
def toSTR: STR

Converts ANY to STR.

Converts ANY to STR.

Inherited from:
ANY
override def toString: String

toString override for ANY.

toString override for ANY.

Definition Classes
ANY -> Any
Inherited from:
ANY
def uniqBy(f: ANY => ANY): ANY
Inherited from:
ANY
def uniqByM(f: (ANY, ANY) => ANY, g: ANY => ANY): ANY
Inherited from:
ANY
def vec1(f: ANY => ANY): ANY

Vectorizes function over ANY.

Vectorizes function over ANY.

Value parameters:
f

function to vectorize

Inherited from:
ANY
def vec2(t: ANY, f: (ANY, ANY) => ANY): ANY

Vectorizes function over 2 ANYs.

Vectorizes function over 2 ANYs.

Value parameters:
f

function to vectrorize

Inherited from:
ANY
def vef1[T](a: T)(f: (T, ANY) => T): T
Inherited from:
ANY
def xFN: List[ANY]

Converts ANY to FN body.

Converts ANY to FN body.

Inherited from:
ANY
def zip(t: ANY, f: (ANY, ANY) => ANY): ANY

Zips 2 ANYs using function.

Zips 2 ANYs using function.

Value parameters:
f

function to zip with

t

second ANY to zip with

Inherited from:
ANY