1 unstable release
0.1.0 | Nov 27, 2020 |
---|
#2379 in Data structures
21KB
343 lines
Batching Queues
An Israeli Queue implementation in rust.
An Israeli Queue is a queue data structure that keeps its elements in a group.
lib.rs
:
A Batching Queue or an Israeli Queue is a queue data structure that keeps elements in a group together.
It can be used in situations where we want to deal with all events of a type together.
See Queue
for the data type.
See Groupable
for the necessary trait.