Type Definition mem::Addr [] [src]

type Addr = usize;

Address type/size. Just a simple alias to usize for easier-to-read code. (In my opinion, obviously.) Originally, I wanted to make it use generics, but that got messy really quick.