TryGetNumberField

Overload list

Choose your operating system:

Windows

macOS

Linux

Name Description

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    float& OutNumber
)

Get the field named FieldName as a number.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    uint64& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within uint64 range.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    double& OutNumber
)

Get the field named FieldName as a number.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    int8& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within int8 range.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    int16& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within int16 range.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    int32& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within int32 range.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    int64& OutNumber
)

Get the field named FieldName as a number.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    uint8& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within uint8 range.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    uint16& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within uint16 range.

Public function Const

bool

 

TryGetNumberField

(
    const FString& FieldName,
    uint32& OutNumber
)

Get the field named FieldName as a number, and makes sure it's within uint32 range.