From 81f57634820279443abb7cc4fd3465477201e167 Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Wed, 11 Jun 2025 08:05:46 -0400 Subject: [PATCH] container/queue: Add common aliases `enqueue` and `dequeue` --- core/container/queue/queue.odin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/container/queue/queue.odin b/core/container/queue/queue.odin index dd22a13d0..75b00d376 100644 --- a/core/container/queue/queue.odin +++ b/core/container/queue/queue.odin @@ -420,6 +420,8 @@ append_elem :: push_back append_elems :: push_back_elems push :: proc{push_back, push_back_elems} append :: proc{push_back, push_back_elems} +enqueue :: push_back +dequeue :: pop_front /*