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