core: Clean up crate docs and give all mods a brief description

This commit is contained in:
Brian Anderson
2012-09-19 16:52:32 -07:00
parent 5e41739562
commit c115b82238
23 changed files with 156 additions and 76 deletions

View File

@@ -1,14 +1,18 @@
/*!
Dynamic vector
A growable vector that makes use of unique pointers so that the
result can be sent between tasks and so forth.
Note that recursive use is not permitted.
*/
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
// Dynamic Vector
//
// A growable vector that makes use of unique pointers so that the
// result can be sent between tasks and so forth.
//
// Note that recursive use is not permitted.
use cast::reinterpret_cast;
use ptr::null;