pub fn new_fcfs_queue<T>(
max_count: isize,
) -> NewQueue<FCFSStrategy, FCFSStrategy, FCFSStrategy, T>where
T: 'static,Expand description
Create a new bounded FCFS (a.k.a FIFO) queue by the specified capacity.
pub fn new_fcfs_queue<T>(
max_count: isize,
) -> NewQueue<FCFSStrategy, FCFSStrategy, FCFSStrategy, T>where
T: 'static,Create a new bounded FCFS (a.k.a FIFO) queue by the specified capacity.