Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCbFieldIterator
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
constexpr TCbFieldIterator () |
Construct an empty field range. | Serialization/CompactBinary.h | |
constexpr TCbFieldIterator
(
FieldType InField |
Construct a field range that contains exactly one field. | Serialization/CompactBinary.h | |
constexpr TCbFieldIterator
(
FieldType&& InField, |
Construct a field range from the first field and a pointer to the end of the last field. | Serialization/CompactBinary.h |
TCbFieldIterator()
Description
Construct an empty field range.
| Name | TCbFieldIterator |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
constexpr TCbFieldIterator()
TCbFieldIterator(FieldType)
Description
Construct a field range that contains exactly one field.
| Name | TCbFieldIterator |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
constexpr TCbFieldIterator
(
FieldType InField
)
TCbFieldIterator(FieldType &&, const void *)
Description
Construct a field range from the first field and a pointer to the end of the last field.
| Name | TCbFieldIterator |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
constexpr TCbFieldIterator
(
FieldType && InField,
const void * InFieldsEnd
)
Parameters
| Name | Remarks |
|---|---|
| InField | The first field, or the default field if there are no fields. |
| InFieldsEnd | A pointer to the end of the value of the last field, or null. |