Skip to content

RingBuffer

29thnight edited this page Nov 28, 2025 · 1 revision

RingBuffer<T>

간단 설명: 고정 크기 순환 버퍼. 최근 항목 유지, 초과 시 덮어쓰기.

API

메서드 설명
push(item) 버퍼에 삽입, 가득 차면 head부터 덮어씀
get_all() 현재 내용 정렬된 벡터로 반환(가득 찬 경우 head 기준 순서)
clear()/IsClear()/toggleClear() 버퍼 클리어/플래그 조회/리셋

내부: buffer_, head_, maxSize_, isClear.

CreatorEngine

API Docs

API Reference
Main
PhysicsSystem
RenderEngine
ScriptBinder
Utility_Framework

etc

Clone this wiki locally