ocean.util.container.queue.DynamicQueue

Wrapper for a common boilerplate to imitate queue using dynamic array.

Provides IQueue!(T) interfaces, stores items internally using dynamic array of items. Will grow indefinitely as long as there is any spare memory. Popped items will initially be marked as "free" and occasionally whole array will be shifted to optimized used memory space.

Members

Classes

DynamicQueue
class DynamicQueue(T)

ditto

Meta

License

Boost Software License Version 1.0. See LICENSE_BOOST.txt for details. Alternatively, this file may be distributed under the terms of the Tango 3-Clause BSD License (see LICENSE_BSD.txt for details).