Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCbBuffer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TCbBuffer () |
Construct a default value. | Serialization/CompactBinary.h | |
TCbBuffer
(
FSharedBuffer ValueBuffer, |
Construct a value from a pointer to its data and an optional externally-provided type. | Serialization/CompactBinary.h | |
TCbBuffer
(
const ViewType& Value, |
Construct a value that holds a reference to the buffer that contains it. | Serialization/CompactBinary.h | |
| Construct a value that holds a reference to the buffer of the outer that contains it. | Serialization/CompactBinary.h |
TCbBuffer()
Description
Construct a default value.
| Name | TCbBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
TCbBuffer()
TCbBuffer(FSharedBuffer, ECbFieldType)
Description
Construct a value from a pointer to its data and an optional externally-provided type.
| Name | TCbBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
TCbBuffer
(
FSharedBuffer ValueBuffer,
ECbFieldType Type
)
Parameters
| Name | Remarks |
|---|---|
| ValueBuffer | A buffer that exactly contains the value. |
| Type | HasFieldType means that ValueBuffer contains the type. Otherwise, use the given type. |
TCbBuffer(const ViewType &, FSharedBuffer)
Description
Construct a value that holds a reference to the buffer that contains it.
| Name | TCbBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
TCbBuffer
(
const ViewType & Value,
FSharedBuffer OuterBuffer
)
TCbBuffer(const ViewType &, TCbBuffer< OtherViewType >)
Description
Construct a value that holds a reference to the buffer of the outer that contains it.
| Name | TCbBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
template<typename OtherViewType>
TCbBuffer
(
const ViewType & Value,
TCbBuffer < OtherViewType > OuterBuffer
)