[Lib] u32.rs: created

This commit is contained in:
David Rajchenbach-Teller 2011-10-17 14:43:53 +02:00 committed by Brian Anderson
parent 27ca86a853
commit eba88ef3ea
2 changed files with 14 additions and 0 deletions

View File

@ -13,6 +13,7 @@ mod char;
mod int;
mod uint;
mod u8;
mod u32;
mod u64;
mod vec;
mod str;

13
src/lib/u32.rs Normal file
View File

@ -0,0 +1,13 @@
pure fn max_value() -> u32 { ret 4294967296u32; }
pure fn min_value() -> u32 { ret 0u32; }
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End:
//