We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ca86a commit eba88efCopy full SHA for eba88ef
src/lib/std.rc
@@ -13,6 +13,7 @@ mod char;
13
mod int;
14
mod uint;
15
mod u8;
16
+mod u32;
17
mod u64;
18
mod vec;
19
mod str;
src/lib/u32.rs
@@ -0,0 +1,13 @@
1
+pure fn max_value() -> u32 { ret 4294967296u32; }
2
+pure fn min_value() -> u32 { ret 0u32; }
3
+
4
+//
5
+// Local Variables:
6
+// mode: rust
7
+// fill-column: 78;
8
+// indent-tabs-mode: nil
9
+// c-basic-offset: 4
10
+// buffer-file-coding-system: utf-8-unix
11
+// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
12
+// End:
0 commit comments