Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRingBuffer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType & operator[]
(
IndexType Index |
Return a writable reference to the value at the given Index. | Containers/RingBuffer.h | |
const ElementType & operator[]
(
IndexType Index |
Return a const reference to the value at the given Index. | Containers/RingBuffer.h |
operatorIndexType
Description
Return a writable reference to the value at the given Index. Invalid to call with an index less than 0 or greater than or equal to the number of elements in the RingBuffer.
| Name | operator[] |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/RingBuffer.h |
| Include Path | #include "Containers/RingBuffer.h" |
ElementType & operator[]
(
IndexType Index
)
operatorIndexType
Description
Return a const reference to the value at the given Index. Invalid to call with an index less than 0 or greater than or equal to the number of elements in the RingBuffer.
| Name | operator[] |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/RingBuffer.h |
| Include Path | #include "Containers/RingBuffer.h" |
const ElementType & operator[]
(
IndexType Index
) const