Web3S_Demo > Web 3S Uint 64Function Library

Web 3S Uint 64Function Library

This Blueprint Function Library exposes the uint64 data type to Blueprints including functions to create, parse, and convert uint64 values. Additionally, all available math operations and comparison functions are exposed as well.

Inheritance Hierarchy

Object
Blueprint Function Library

References

Module Web3S_Math_Runtime
Header Plugins/Web3S_Plugin/Source/Web3S_Math_Runtime/Public/Math/Lib/Web3S_uint64FunctionLibrary.h
Source Plugins/Web3S_Plugin/Source/Web3S_Math_Runtime/Private/Math/Lib/Web3S_uint64FunctionLibrary.cpp
Include Math/Lib/Web3S_uint64FunctionLibrary.h

Functions

Decrement uint64 Decreases the value of uint64 by one.
Increment uint64 Increases the value of uint64 by one.
Make Literal uint64 from String Tries to parse the input string value. If the string value is prefixed with "0x" it will be interpreted as a hex value, otherwise as a decimal value.
String(Hex) to uint64 Converts the hex string containing hexadecimal characters to uint64. The input string can be prefixed with "0x" which will be ignored during the conversion.
uint64 != Byte Returns true if A is not equal to B (A != B)
uint64 != String Returns true if A is not equal to B (A != B), where B is a String
uint64 != integer Returns true if A is not equal to B (A != B)
uint64 != integer64 Returns true if A is not equal to B (A != B)
uint64 != uint64 Returns true if A is not equal to B (A != B)
uint64 % Byte Modulo (A % B)
uint64 % String Modulo (A % B), where B is a String
uint64 % integer Modulo (A % B)
uint64 % integer64 Modulo (A % B)
uint64 % uint64 Modulo (A % B)
uint64 * Byte Multiplication (A * B)
uint64 * String Multiplication (A * B), where B is a String
uint64 * integer Multiplication (A * B)
uint64 * integer64 Multiplication (A * B)
uint64 * uint64 Multiplication (A * B)
uint64 + Byte Addition (A + B)
uint64 + String Addition (A + B), where B is a String
uint64 + integer Addition (A + B)
uint64 + integer64 Addition (A + B)
uint64 + uint64 Addition (A + B)
uint64 - Byte Subtraction (A - B)
uint64 - String Subtraction (A - B), where B is a String
uint64 - integer Subtraction (A - B)
uint64 - integer64 Subtraction (A - B)
uint64 - uint64 Subtraction (A - B)
uint64 / Byte Division (A / B)
uint64 / String Division (A / B), where B is a String
uint64 / integer Division (A / B)
uint64 / integer64 Division (A / B)
uint64 / uint64 Division (A / B)
uint64 < Byte Returns true if A is less than B (A < B)
uint64 < String Returns true if A is less than B (A < B), where B is a String
uint64 < integer Returns true if A is less than B (A < B)
uint64 < integer64 Returns true if A is less than B (A < B)
uint64 < uint64 Returns true if A is less than B (A < B)
uint64 <= Byte Returns true if A is less than or equal to B (A <= B)
uint64 <= String Returns true if A is less than or equal to B (A <= B), where B is a String
uint64 <= integer Returns true if A is less than or equal to B (A <= B)
uint64 <= integer64 Returns true if A is less than or equal to B (A <= B)
uint64 <= uint64 Returns true if A is less than or equal to B (A <= B)
uint64 == Byte Returns true if A is equal to B (A == B)
uint64 == String Returns true if A is equal to B (A == B), where B is a String
uint64 == integer Returns true if A is equal to B (A == B)
uint64 == integer64 Returns true if A is equal to B (A == B)
uint64 == uint64 Returns true if A is equal to B (A == B)
uint64 > Byte Returns true if A is greater than B (A > B)
uint64 > String Returns true if A is greater than B (A > B), where B is a String
uint64 > integer Returns true if A is greater than B (A > B)
uint64 > integer64 Returns true if A is greater than B (A > B)
uint64 > uint64 Returns true if A is greater than B (A > B)
uint64 >= Byte Returns true if A is greater than or equal to B (A >= B)
uint64 >= String Returns true if A is greater than or equal to B (A >= B), where B is a String
uint64 >= integer Returns true if A is greater than or equal to B (A >= B)
uint64 >= integer64 Returns true if A is greater than or equal to B (A >= B)
uint64 >= uint64 Returns true if A is greater than or equal to B (A >= B)
uint64 to Hex String Converts uint64 to String in hexadecimal notation.