Procedures
Procedure | Location | Procedure Type | Description |
---|---|---|---|
assumeCompare | fniNumberStringUtil | Function | Compare two strings with the assumption that both strings are valid decimal integers. |
assumeCompareAllBase | fniNumberStringUtil | Function | Compare two strings with the assumption that both strings are valid integers of any radix between 2 and 36. |
assumeIsEven | fniNumberStringUtil | Function | Check the |
assumeIsOdd | fniNumberStringUtil | Function | Check the |
binaryCompareAsInt128 | fniBinaryUtil128 | Function | Compare two strings as binary string by parsing them to int128 values first. |
binaryCompareAsInt32 | fniBinaryUtil | Function | Compare two strings as binary strings by parsing them to int32 values first. |
binaryCompareAsInt64 | fniBinaryUtil64 | Function | Compare two strings as binary strings by parsing them to int64 values first. |
binaryInt128OrSmaller | fniBinaryUtil128 | Function | Compare two strings bases on the content of the strings reference to int128 values. If the strings are valid binary strings that can be parsed to int128 values then they will be compared base on their int128 values. Otherwise, the strings will be compared base on the priority ranking order below. |
binaryInt32OrSmaller | fniBinaryUtil | Function | Compare two strings bases on the content of the strings reference to int32 values. If the strings are valid binary strings that can be parsed to int32 values then they will be compared base on their int32 values. Otherwise, the strings will be compared base on the priority ranking order below. |
binaryInt64OrSmaller | fniBinaryUtil64 | Function | Compare two strings bases on the content of the strings reference to int64 values. If the strings are valid binary strings that can be parsed to int64 values then they will be compared base on their int64 values. Otherwise, the strings will be compared base on the priority ranking order below. |
binaryToInt128 | fniBinaryUtil128 | Function | Parse the |
binaryToInt128TrueError | fniBinaryUtil128 | Function | Parse the |
binaryToInt32 | fniBinaryUtil | Function | Parse the |
binaryToInt32TrueError | fniBinaryUtil | Function | Parse the |
binaryToInt64 | fniBinaryUtil64 | Function | Parse the |
binaryToInt64TrueError | fniBinaryUtil64 | Function | Parse the |
decCompareAsInt128 | fniDecimalUtil128 | Function | Compare two strings as signed decimal integer strings by parsing them to int128 values first. |
decCompareAsInt32 | fniDecimalUtil | Function | Compare two strings as signed decimal integer strings by parsing them to int32 values first. |
decCompareAsInt64 | fniDecimalUtil64 | Function | Compare two strings as signed decimal integer strings by parsing them to int64 values first. |
decInt128OrSmaller | fniDecimalUtil128 | Function | Compare two strings bases on the content of the strings reference to int128 values. If the strings are valid signed decimal integer strings that can be parsed to int128 values then they will be compared base on their int128 values. Otherwise, the strings will be compared base on the priority ranking order below. |
decInt32OrSmaller | fniDecimalUtil | Function | Compare two strings bases on the content of the strings reference to int32 values. If the strings are valid signed decimal integer strings that can be parsed to int32 values then they will be compared base on their int32 values. Otherwise, the strings will be compared base on the priority ranking order below. |
decInt64OrSmaller | fniDecimalUtil64 | Function | Compare two strings bases on the content of the strings reference to int64 values. If the strings are valid signed decimal integer strings that can be parsed to int64 values then they will be compared base on their int64 values. Otherwise, the strings will be compared base on the priority ranking order below. |
decToInt128 | fniDecimalUtil128 | Function | Parse the |
decToInt128TrueError | fniDecimalUtil128 | Function | Parse the |
decToInt32 | fniDecimalUtil | Function | Parse the |
decToInt32TrueError | fniDecimalUtil | Function | Parse the |
decToInt64 | fniDecimalUtil64 | Function | Parse the |
decToInt64TrueError | fniDecimalUtil64 | Function | Parse the |
fnStringCompare | fniNumberStringUtil | Function | Compare two strings as decimal integers. This function evaluates both, negative and positive values. There isn't a maximum length for the strings. Nonetheless, the strings can't be empty. |
fnStringCompareAsBase | fniNumberStringUtil | Function | Compare two strings as integer strings of a numbering system with the radix that is defined by the value of the argument |
hexCompareAsInt128 | fniHexUtil128 | Function | Compare two strings as hexadecimal string by parsing them to int128 values first. |
hexCompareAsInt32 | fniHexUtil | Function | Compare two strings as hexadecimal strings by parsing them to int32 values first. |
hexCompareAsInt64 | fniHexUtil64 | Function | Compare two strings as hexadecimal strings by parsing them to int64 values first. |
hexInt128OrSmaller | fniHexUtil128 | Function | Compare two strings bases on the content of the strings reference to int128 values. If the strings are valid hexadecimal strings that can be parsed to int128 values then they will be compared base on their int128 values. Otherwise, the strings will be compared base on the priority ranking order below. |
hexInt32OrSmaller | fniHexUtil | Function | Compare two strings bases on the content of the strings reference to int32 values. If the strings are valid hexadecimal strings that can be parsed to int32 values then they will be compared base on their int32 values. Otherwise, the strings will be compared base on the priority ranking order below. |
hexInt64OrSmaller | fniHexUtil64 | Function | Compare two strings bases on the content of the strings reference to int64 values. If the strings are valid hexadecimal strings that can be parsed to int64 values then they will be compared base on their int64 values. Otherwise, the strings will be compared base on the priority ranking order below. |
hexToInt128 | fniHexUtil128 | Function | Parse the |
hexToInt128TrueError | fniHexUtil128 | Function | Parse the |
hexToInt32 | fniHexUtil | Function | Parse the |
hexToInt32TrueError | fniHexUtil | Function | Parse the |
hexToInt64 | fniHexUtil64 | Function | Parse the |
hexToInt64TrueError | fniHexUtil64 | Function | Parse the |
int128ToBinary | fniInt128Util | Function | Convert the |
int128ToBinaryAsU | fniInt128Util | Function | Convert the |
int128ToHex | fniInt128Util | Function | Convert the |
int128ToHexAsU | fniInt128Util | Function | Convert the |
int128ToOctal | fniInt128Util | Function | Convert the |
int128ToOctalAsU | fniInt128Util | Function | Convert the |
int32ToBinary | fniInt32Util | Function | Convert the |
int32ToBinaryAsU | fniInt32Util | Function | Convert the |
int32ToHex | fniInt32Util | Function | Convert the |
int32ToHexAsU | fniInt32Util | Function | Convert the |
int32ToOctal | fniInt32Util | Function | Convert the |
int32ToOctalAsU | fniInt32Util | Function | Convert the |
int64ToBinary | fniInt64Util | Function | Convert the |
int64ToBinaryAsU | fniInt64Util | Function | Convert the |
int64ToHex | fniInt64Util | Function | Convert the |
int64ToHexAsU | fniInt64Util | Function | Convert the |
int64ToOctal | fniInt64Util | Function | Convert the |
int64ToOctalAsU | fniInt64Util | Function | Convert the |
isBase | fniNumberStringUtil | Function | Check if the |
isBinary | fniNumberStringUtil | Function | Check if the |
isHex | fniNumberStringUtil | Function | Check if the |
isInteger | fniNumberStringUtil | Function | Check if the |
isOctal | fniNumberStringUtil | Function | Check if the |
isUnsignedBase | fniNumberStringUtil | Function | Check if the |
isUnsignedBinary | fniNumberStringUtil | Function | Check if the |
isUnsignedHex | fniNumberStringUtil | Function | Check if the |
isUnsignedInteger | fniNumberStringUtil | Function | Check if the |
isUnsignedOctal | fniNumberStringUtil | Function | Check if the |
octalCompareAsInt128 | fniOctalUtil128 | Function | Compare two strings as octal string by parsing them to int128 values first. |
octalCompareAsInt32 | fniOctalUtil | Function | Compare two strings as octal strings by parsing them to int32 values first. |
octalCompareAsInt64 | fniOctalUtil64 | Function | Compare two strings as octal strings by parsing them to int64 values first. |
octalInt128OrSmaller | fniOctalUtil128 | Function | Compare two strings bases on the content of the strings reference to int128 values. If the strings are valid octal strings that can be parsed to int128 values then they will be compared base on their int128 values. Otherwise, the strings will be compared base on the priority ranking order below. |
octalInt32OrSmaller | fniOctalUtil | Function | Compare two strings bases on the content of the strings reference to int32 values. If the strings are valid octal strings that can be parsed to int32 values then they will be compared base on their int32 values. Otherwise, the strings will be compared base on the priority ranking order below. |
octalInt64OrSmaller | fniOctalUtil64 | Function | Compare two strings bases on the content of the strings reference to int64 values. If the strings are valid octal strings that can be parsed to int64 values then they will be compared base on their int64 values. Otherwise, the strings will be compared base on the priority ranking order below. |
octalToInt128 | fniOctalUtil128 | Function | Parse the |
octalToInt128TrueError | fniOctalUtil128 | Function | Parse the |
octalToInt32 | fniOctalUtil | Function | Parse the |
octalToInt32TrueError | fniOctalUtil | Function | Parse the |
octalToInt64 | fniOctalUtil64 | Function | Parse the |
octalToInt64TrueError | fniOctalUtil64 | Function | Parse the |