Lists the names of all user-defined and built-in functions.
ID: 384
using uCalcSoftware;
var uc = new uCalc();
// Note: Some items in this list (like bool, or int*) appear more than once or out of chronological
// order because they are aliases (like bool, which is also an alias for boolean)
Console.WriteLine("Defined Functions:");
foreach(var item in uc.GetItems(ItemIs.Function)) {
Console.WriteLine($" - {item.Name}");
}
Defined Functions:
- abs
- acos
- acosh
- addptr
- addressof
- anytype
- append
- append_copy
- arg
- argcount
- asc
- asin
- asinh
- atan
- atan2
- atanh
- back
- baseconvert
- bin
- bool
- bool
- int8u
- c_str
- cbrt
- ceil
- chr
- clear
- compare
- complex
- conj
- contains
- copysign
- cos
- cosh
- define
- doloop
- double
- endswith
- erase
- erase_copy
- erf
- erfc
- error
- eval
- evalstr
- evaluate
- evaluateint
- evaluatestr
- exp
- exp2
- expm1
- exprptr
- fabs
- fdim
- file
- filesize
- fill
- find_first_not_of
- find_first_of
- find_last_not_of
- find_last_of
- single
- floor
- fmax
- fmin
- fmod
- forloop
- format
- fpclassify
- frac
- frexp
- fromto
- goto
- hex
- hypot
- iif
- ilogb
- imag
- indexof
- inf
- insert
- insert_copy
- int
- int16
- int16u
- int
- int32u
- int64
- int64u
- int8
- int8u
- int
- isfinite
- isinf
- isnan
- isnormal
- lastindexof
- lcase
- ldexp
- length
- lgamma
- llrint
- llround
- log
- log10
- log1p
- log2
- logb
- lrint
- lround
- ltrim
- max
- min
- modf
- nan
- nearbyint
- nextafter
- nexttoward
- norm
- oct
- omnitype
- padleft
- padright
- parse
- pointer
- polar
- pop
- pow
- precedence
- proj
- push
- rand
- randfromsameseed
- randomnumber
- randomseed
- real
- remainder
- remquo
- repeat
- replace
- replace_copy
- reset
- rint
- round
- rtrim
- sametypeas
- scalbln
- scalbn
- setvar
- sgn
- signbit
- sin
- single
- sinh
- size_t
- sizeof
- sort
- sqr
- sqrt
- startswith
- str
- string
- substr
- subtractptr
- swap
- tan
- tanh
- tgamma
- trim
- trunc
- ucalcinstance
- ucase
- valueat
- valueattype
- void using uCalcSoftware; var uc = new uCalc(); // Note: Some items in this list (like bool, or int*) appear more than once or out of chronological // order because they are aliases (like bool, which is also an alias for boolean) Console.WriteLine("Defined Functions:"); foreach(var item in uc.GetItems(ItemIs.Function)) { Console.WriteLine($" - {item.Name}"); }
#include
#include "uCalc.h"
using namespace std;
using namespace uCalcSoftware;
int main() {
uCalc uc;
// Note: Some items in this list (like bool, or int*) appear more than once or out of chronological
// order because they are aliases (like bool, which is also an alias for boolean)
cout << "Defined Functions:" << endl;
for(auto item : uc.GetItems(ItemIs::Function)) {
cout << " - " << item.Name() << endl;
}
}
Defined Functions:
- abs
- acos
- acosh
- addptr
- addressof
- anytype
- append
- append_copy
- arg
- argcount
- asc
- asin
- asinh
- atan
- atan2
- atanh
- back
- baseconvert
- bin
- bool
- bool
- int8u
- c_str
- cbrt
- ceil
- chr
- clear
- compare
- complex
- conj
- contains
- copysign
- cos
- cosh
- define
- doloop
- double
- endswith
- erase
- erase_copy
- erf
- erfc
- error
- eval
- evalstr
- evaluate
- evaluateint
- evaluatestr
- exp
- exp2
- expm1
- exprptr
- fabs
- fdim
- file
- filesize
- fill
- find_first_not_of
- find_first_of
- find_last_not_of
- find_last_of
- single
- floor
- fmax
- fmin
- fmod
- forloop
- format
- fpclassify
- frac
- frexp
- fromto
- goto
- hex
- hypot
- iif
- ilogb
- imag
- indexof
- inf
- insert
- insert_copy
- int
- int16
- int16u
- int
- int32u
- int64
- int64u
- int8
- int8u
- int
- isfinite
- isinf
- isnan
- isnormal
- lastindexof
- lcase
- ldexp
- length
- lgamma
- llrint
- llround
- log
- log10
- log1p
- log2
- logb
- lrint
- lround
- ltrim
- max
- min
- modf
- nan
- nearbyint
- nextafter
- nexttoward
- norm
- oct
- omnitype
- padleft
- padright
- parse
- pointer
- polar
- pop
- pow
- precedence
- proj
- push
- rand
- randfromsameseed
- randomnumber
- randomseed
- real
- remainder
- remquo
- repeat
- replace
- replace_copy
- reset
- rint
- round
- rtrim
- sametypeas
- scalbln
- scalbn
- setvar
- sgn
- signbit
- sin
- single
- sinh
- size_t
- sizeof
- sort
- sqr
- sqrt
- startswith
- str
- string
- substr
- subtractptr
- swap
- tan
- tanh
- tgamma
- trim
- trunc
- ucalcinstance
- ucase
- valueat
- valueattype
- void #include <iostream> #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; // Note: Some items in this list (like bool, or int*) appear more than once or out of chronological // order because they are aliases (like bool, which is also an alias for boolean) cout << "Defined Functions:" << endl; for(auto item : uc.GetItems(ItemIs::Function)) { cout << " - " << item.Name() << endl; } }
Imports System
Imports uCalcSoftware
Public Module Program
Public Sub Main()
Dim uc As New uCalc()
'// Note: Some items in this list (like bool, or int*) appear more than once or out of chronological
'// order because they are aliases (like bool, which is also an alias for boolean)
Console.WriteLine("Defined Functions:")
For Each item In uc.GetItems(ItemIs.Function)
Console.WriteLine($" - {item.Name}")
Next
End Sub
End Module
Defined Functions:
- abs
- acos
- acosh
- addptr
- addressof
- anytype
- append
- append_copy
- arg
- argcount
- asc
- asin
- asinh
- atan
- atan2
- atanh
- back
- baseconvert
- bin
- bool
- bool
- int8u
- c_str
- cbrt
- ceil
- chr
- clear
- compare
- complex
- conj
- contains
- copysign
- cos
- cosh
- define
- doloop
- double
- endswith
- erase
- erase_copy
- erf
- erfc
- error
- eval
- evalstr
- evaluate
- evaluateint
- evaluatestr
- exp
- exp2
- expm1
- exprptr
- fabs
- fdim
- file
- filesize
- fill
- find_first_not_of
- find_first_of
- find_last_not_of
- find_last_of
- single
- floor
- fmax
- fmin
- fmod
- forloop
- format
- fpclassify
- frac
- frexp
- fromto
- goto
- hex
- hypot
- iif
- ilogb
- imag
- indexof
- inf
- insert
- insert_copy
- int
- int16
- int16u
- int
- int32u
- int64
- int64u
- int8
- int8u
- int
- isfinite
- isinf
- isnan
- isnormal
- lastindexof
- lcase
- ldexp
- length
- lgamma
- llrint
- llround
- log
- log10
- log1p
- log2
- logb
- lrint
- lround
- ltrim
- max
- min
- modf
- nan
- nearbyint
- nextafter
- nexttoward
- norm
- oct
- omnitype
- padleft
- padright
- parse
- pointer
- polar
- pop
- pow
- precedence
- proj
- push
- rand
- randfromsameseed
- randomnumber
- randomseed
- real
- remainder
- remquo
- repeat
- replace
- replace_copy
- reset
- rint
- round
- rtrim
- sametypeas
- scalbln
- scalbn
- setvar
- sgn
- signbit
- sin
- single
- sinh
- size_t
- sizeof
- sort
- sqr
- sqrt
- startswith
- str
- string
- substr
- subtractptr
- swap
- tan
- tanh
- tgamma
- trim
- trunc
- ucalcinstance
- ucase
- valueat
- valueattype
- void Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() '// Note: Some items in this list (like bool, or int*) appear more than once or out of chronological '// order because they are aliases (like bool, which is also an alias for boolean) Console.WriteLine("Defined Functions:") For Each item In uc.GetItems(ItemIs.Function) Console.WriteLine($" - {item.Name}") Next End Sub End Module