Module os1::vec [] [src]

A simple vector implementation

Reexports

use core::prelude::v1::*;
use alloc::heap::EMPTY;
use alloc::raw_vec::RawVec;
use core::intrinsics::{arith_offset, assume};
use core::mem;
use core::ops::{Index, IndexMut, Deref, DerefMut};
use core::ptr;
use core::slice;

Structs

IntoIter

An iterator that moves out of a vector modified from the stdlib

Vec

A vector implementation. - Amortized O(1) push to end - O(1) pop from end - O(1) access to any element - Automatic memory management - Indexable with [] operator