deque: add a module docstring

This commit is contained in:
Daniel Micay 2013-03-21 19:14:02 -04:00
parent ed25a674ac
commit b2060174d4

View File

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! A double-ended queue implemented as a circular buffer
use core::container::{Container, Mutable};
use core::prelude::*;
use core::vec;