Go to the source code of this file.
|
| template<typename T , std::enable_if_t<!TModels_V< CInsertable< FArchive & >, T > &&TModels_V< CInsertable< FStructuredArchiveSlot >, T >, int > = 0> |
| FArchive & | operator<< (FArchive &Ar, T &Obj) |
| |
| template<typename T , std::enable_if_t< TModels_V< CInsertable< FArchive & >, T > &&!TModels_V< CInsertable< FStructuredArchiveSlot >, T >, int > = 0> |
| void | operator<< (FStructuredArchiveSlot Slot, T &Obj) |
| |
◆ operator<<() [1/2]
Adapter operator which allows a type to stream to an FArchive when it already supports streaming to an FStructuredArchiveSlot.
- Parameters
-
| Ar | The archive to read from or write to. |
| Obj | The object to read or write. |
- Returns
- A reference to the same archive as Ar.
◆ operator<<() [2/2]
Adapter operator which allows a type to stream to an FStructuredArchiveSlot when it already supports streaming to an FArchive.
- Parameters
-
| Slot | The slot to read from or write to. |
| Obj | The object to read or write. |