みーのぺーじ

みーが趣味でやっているPCやソフトウェアについて.Python, Javascript, Processing, Unityなど.

2023-05-24から1日間の記事一覧

Rust で queue を作ってみる

pub fn pop(&mut self) -> Option<T> Removes the last element from a vector and returns it, or None if it is empty. If you’d like to pop the first element, consider using VecDeque::pop_front instead. Vec in std::vec - Rust vectorから最後の要素</t>…