queued_rust 0.7.4

Simple implementation of a queue type for better privacy managment and data orginization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod weighted; // Module containing weighted items
mod queues;   // Module containing various queue types

pub use queues::{SortedQueue, Queue}; // Re-exporting Queue and SortedQueue from the queues module
pub use weighted::Weighted;           // Re-exporting Weighted from the weighted module
pub use queues::QueueError;           // Re-exporting QueueError from the queues module
pub use queues::{merge_queues,        // Helper function to help manipulate queues
                merge_sorted_queues,
                queue_to_vec,
                sorted_queue_to_vec,};  

#[cfg(test)]
mod tests; // Module containing tests for the queues