mem_macros

Build Status

std::mem::size_of and std::mem::align_of as a macro, to avoid turbofish notation.

Examples

```

[macro_use]

extern crate memmacros; asserteq!(1, size_of!(u8)); ```