Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBigInt
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBigInt () |
Default constructor. Initializes the number to zero. | Math/BigInt.h | |
TBigInt
(
int64 Other |
Constructor. Initializes this big int with a 64 bit integer value. | Math/BigInt.h | |
TBigInt
(
const uint32* InBits |
Constructor. Initializes this big int with an array of words. | Math/BigInt.h | |
| Constructor. Initializes this big int with a string representing a hex value. | Math/BigInt.h | ||
TBigInt
(
const uint8* InData, |
Constructor. Initializes this big int with an array of bytes. | Math/BigInt.h |
TBigInt()
Description
Default constructor. Initializes the number to zero.
| Name | TBigInt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/BigInt.h |
| Include Path | #include "Math/BigInt.h" |
TBigInt()
TBigInt(int64)
Description
Constructor. Initializes this big int with a 64 bit integer value.
| Name | TBigInt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/BigInt.h |
| Include Path | #include "Math/BigInt.h" |
TBigInt
(
int64 Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The value to set. |
TBigInt(const uint32 *)
Description
Constructor. Initializes this big int with an array of words.
| Name | TBigInt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/BigInt.h |
| Include Path | #include "Math/BigInt.h" |
TBigInt
(
const uint32 * InBits
)
TBigInt(const FString &)
Description
Constructor. Initializes this big int with a string representing a hex value.
| Name | TBigInt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/BigInt.h |
| Include Path | #include "Math/BigInt.h" |
TBigInt
(
const FString & Value
)
TBigInt(const uint8 *, uint32)
Description
Constructor. Initializes this big int with an array of bytes.
| Name | TBigInt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/BigInt.h |
| Include Path | #include "Math/BigInt.h" |
TBigInt
(
const uint8 * InData,
uint32 InNumBytes
)