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