Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObjectBaseUtility
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool HasAnyFlags
(
EObjectFlags FlagsToCheck |
Used to safely check whether any of the passed in flags are set. | UObject/UObjectBaseUtility.h | |
bool HasAnyFlags
(
EObjectFlags FlagsToCheck, |
Used to safely check whether any of the passed in flags are set. | UObject/UObjectBaseUtility.h |
HasAnyFlags(EObjectFlags)
Description
Used to safely check whether any of the passed in flags are set.
| Name | HasAnyFlags |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectBaseUtility.h |
| Include Path | #include "UObject/UObjectBaseUtility.h" |
bool HasAnyFlags
(
EObjectFlags FlagsToCheck
) const
true if any of the passed in flags are set, false otherwise (including no flags passed in).
Parameters
| Name | Remarks |
|---|---|
| FlagsToCheck | Object flags to check for. |
HasAnyFlags(EObjectFlags, std::memory_order)
Description
Used to safely check whether any of the passed in flags are set.
| Name | HasAnyFlags |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectBaseUtility.h |
| Include Path | #include "UObject/UObjectBaseUtility.h" |
bool HasAnyFlags
(
EObjectFlags FlagsToCheck,
std::memory_order InMemoryOrder
) const
true if any of the passed in flags are set, false otherwise (including no flags passed in).
Parameters
| Name | Remarks |
|---|---|
| FlagsToCheck | Object flags to check for. |
| MemoryOrder | Memory ordering to apply when reading the flags from memory |