keyberon
keyberon copied to clipboard
[mod] rename stack to queue
This addresses #103 and renames the occurring stack
s to queue
.
Two things that might require discussion:
- The name of the method
unstack
does not make sense anymore. The corresponding queue versionpop
is too weak in my opinion. I now named itresolve_queued_event
, which is rather long. Do you have a good idea for a name? - There are some occurrences where a closure of a now
Queued
object is calleds
(coming from the nameStacked
). Shall these be renamed? Toq
forQueued
? Ore
for a generic "event"?