5#include "CoreMinimal.h"
6#include "Kismet/BlueprintFunctionLibrary.h"
9#include "BigIntegerParser.h"
10#include "BlueprintHelper.h"
12#include "BigIntegerParserLibrary.generated.h"
30 UFUNCTION(BlueprintPure, meta = (DisplayName =
"Parse BigInteger From Invariant Decimal"), Category =
"Math|BigInteger")
31 static FBigInteger ParseBigIntegerFromInvariantDecimal_String(
const FString& In);
40 UFUNCTION(BlueprintPure, meta = (DisplayName =
"Parse BigInteger From Invariant Hexadecimal"), Category =
"Math|BigInteger")
41 static FBigInteger ParseBigIntegerFromInvariantHexadecimal_String(
const FString& In);
51 UFUNCTION(BlueprintCallable, meta = (DisplayName =
"Try Parse BigInteger From Invariant Decimal", ExpandEnumAsExecs =
"ReturnValue", ReturnDisplayName =
"Succeeded"), Category =
"Math|BigInteger")
52 static ESuccessFail TryParseBigIntegerFromInvariantDecimal_String(
const FString& In,
FBigInteger& Number);
62 UFUNCTION(BlueprintCallable, meta = (DisplayName =
"Try Parse BigInteger From Invariant Hexadecimal", ExpandEnumAsExecs =
"ReturnValue", ReturnDisplayName =
"Succeeded"), Category =
"Math|BigInteger")
63 static ESuccessFail TryParseBigIntegerFromInvariantHexadecimal_String(
const FString& In,
FBigInteger& Number);
68#include "BigIntegerParserLibrary.inl"
Definition: BigIntegerParserLibrary.h:19
Definition: BigInteger.h:50