|
Returns B if A is true or C if A is false
|
Retourneert B als A waar is of C als A onwaar is
|
|
f_isNaN - Find whether a value is not a number
|
f_isNaN - Bepalen of een waarde geen getal is
|
|
Returns 1 (or B) if A === NaN or 0 (or C) if not. Parameters B and C are optional.
|
Retourneert 1 (of B) als A === NaN of 0 (of C) als dat niet het geval is. Parameters B en C zijn optioneel.
|
|
f_cmp - Complex Comparison
|
f_cmp - Complexe vergelijking
|
|
f_int - Alias of f_floor
|
f_int - Alias van f_floor
|
|
f_rnd - Alias of f_round
|
f_rnd - Alias van f_round
|
|
f_eq - Alias of f_cmp - IS EQUAL
|
f_eq - Alias van f_cmp - IS GELIJK
|
|
Returns 1 (or C) if A == B or 0 (or D) if not. Parameters C and D are optional.
|
Retourneert 1 (of C) als A == B of 0 (of D) als dat niet het geval is. Parameters C en D zijn optioneel.
|
|
f_uq - Alias of f_cmp - IS UNEQUAL
|
f_uq - Alias van f_cmp - IS ONGELIJK
|
|
Returns 1 (or C) if A != B or 0 (or D) if not. Parameters C and D are optional.
|
Retourneert 1 (of C) als A != B of 0 (of D) als dat niet het geval is. Parameters C en D zijn optioneel.
|
|
f_gt - Alias of f_cmp - IS GREATER THAN
|
f_gt - Alias of f_cmp - IS GROTER DAN
|
|
Returns 1 (or C) if A > B or 0 (or D) if not. Parameters C and D are optional.
|
Retourneert 1 (of C) als A > B of 0 (of D) als dat niet het geval is. Parameters C en D zijn optioneel.
|
|
f_lt - Alias of f_cmp - IS LOWER THAN
|
f_lt - Alias of f_cmp - IS LAGER DAN
|
|
Returns 1 (or C) if A < B or 0 (or D) if not. Parameters C and D are optional.
|
Retourneert 1 (of C) als A < B of 0 (of D) als dat niet het geval is. Parameters C en D zijn optioneel.
|
|
f_ge - Alias of f_cmp - IS GREATER OR EQUAL
|
f_ge - Alias van f_cmp - IS GROTER OF GELIJK
|
|
Returns 1 (or C) if A >= B or 0 (or D) if not. Parameters C and D are optional.
|
Retourneert 1 (of C) als A > = B of 0 (of D) als dat niet het geval is. Parameters C en D zijn optioneel.
|
|
f_le - Alias of f_cmp - IS LOWER OR EQUAL
|
f_le - Alias van f_cmp - IS LAGER OF GELIJK
|
|
Returns 1 (or C) if A <= B or 0 (or D) if not. Parameters C and D are optional.
|
Retourneert 1 (of C) als A < = B of 0 (of D) als dat niet het geval is. Parameters C en D zijn optioneel.
|
|
Addition
|
Toevoeging
|
|
Mathematical Operation to return the sum of two or more summands
|
Wiskundige bewerking om de som van twee of meer sommen terug te geven
|