Navigation
API > API/Plugins > API/Plugins/RigLogicLib > API/Plugins/RigLogicLib/Writable
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
std::size_t write
(
const char* source, |
Writes bytes from the given buffer to the stream. | trio/Concepts.h | |
| Writes bytes from the given stream to this stream. | trio/Concepts.h |
write(const char *, std::size_t)
Description
Writes bytes from the given buffer to the stream.
| Name | write |
| Type | function |
| Header File | /Engine/Plugins/Animation/RigLogic/Source/RigLogicLib/Public/trio/Concepts.h |
| Include Path | #include "trio/Concepts.h" |
std::size_t write
(
const char * source,
std::size_t size
)
Number of bytes written.
Parameters
| Name | Remarks |
|---|---|
| source | Source buffer from which the data is going to be written to the stream. |
| size | Number of bytes to write to the stream. |
write(Readable *, std::size_t)
Description
Writes bytes from the given stream to this stream.
| Name | write |
| Type | function |
| Header File | /Engine/Plugins/Animation/RigLogic/Source/RigLogicLib/Public/trio/Concepts.h |
| Include Path | #include "trio/Concepts.h" |
std::size_t write
(
Readable * source,
std::size_t size
)
Number of bytes written.
Parameters
| Name | Remarks |
|---|---|
| source | Source stream from which the data is going to be written into this stream. |
| size | Number of bytes to write to the stream. |