about summary refs log tree commit diff
path: root/src/libcore/u32.rs
blob: f33b8414a4d2eee46ac188d5fb90414fefc3f4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
Module: u32
*/

/*
Const: min_value

Return the minimal value for a u32
*/
const min_value: u32 = 0u32;

/*
Const: max_value

Return the maximal value for a u32
*/
const max_value: u32 = 0xffff_ffffu32;

//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
//