dranges.queue

A simple queue module. It's from an old codebase and will be transformed, maybe fused with stack.

License:
Boost License 1.0.

Authors:
Philippe Sigaud

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

struct Queue (T);


this(int initialLength = 1000);


void push (T value);


T top ();


T pop ();


bool empty ();


size_t length ();


Page was generated with on Fri Nov 12 11:55:11 2010