--- nono/lib/fixedqueue.h 2026/04/29 17:05:47 1.1.1.11 +++ nono/lib/fixedqueue.h 2026/04/29 17:05:52 1.1.1.12 @@ -111,6 +111,10 @@ class FixedQueue final : private std::ve // XXX 範囲チェックすべきだがとりあえず return (*this)[(start + idx) % capacity]; } + // 最新の要素を覗き見る。 + T PeekLatest() const { + return Peek(Length() - 1); + } // 要素数を返す constexpr uint Capacity() const {