Type representing categories of built-in functions
Source position: fpexprpars.pp line 559
type TBuiltInCategory = ( |
||
bcStrings, |
|
String manipulation functions category |
bcDateTime, |
|
Date and time functions category |
bcMath, |
|
Mathematical functions category |
bcBoolean, |
|
Boolean functions category |
bcConversion, |
|
Type conversion functions category |
bcData, |
|
Data manipulation functions category |
bcVaria, |
|
Miscellaneous functions category |
bcUser, |
|
User-defined functions category |
bcAggregate |
|
Aggregate functions category |
); |
This enumeration categorizes the different types of built-in functions available in the expression parser. Each category groups related functions together, such as string functions, mathematical functions, date/time functions, and others.