std::boxed::HEAPExperimental [-]  [+] [src]

pub static HEAP: () = 


A value that represents the global exchange heap. This is the default place that the box keyword allocates into when no place is supplied.

The following two examples are equivalent:

fn main() { use std::boxed::HEAP; struct Bar; impl Bar { fn new(_a: int) { } } let foo = box(HEAP) Bar::new(2); let foo = box Bar::new(2); }
use std::boxed::HEAP;

let foo = box(HEAP) Bar::new(2);
let foo = box Bar::new(2);