rust_extra/
lib.rs

1// This file is part of rust-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/rust-extra/master/COPYRIGHT. No part of rust-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016 The developers of rust-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/rust-extra/master/COPYRIGHT.
3
4
5#![allow(non_snake_case)]
6#![allow(non_upper_case_globals)]
7#![feature(core_intrinsics)]
8#![feature(associated_consts)]
9
10
11extern crate core;
12extern crate libc;
13
14
15use ::std::fs::Metadata;
16use ::std::fs::Permissions;
17#[cfg(unix)] use ::std::os::unix::fs::PermissionsExt;
18
19
20pub mod arrays;
21pub mod cstrings;
22pub mod powersOfTwo;
23
24
25include!("do_while_loop.rs");
26include!("likely.rs");
27include!("offsetOf.rs");
28include!("true_immutable_thread_local.rs");
29include!("unlikely.rs");
30include!("u4.rs");
31include!("u5.rs");
32include!("u6.rs");
33include!("u31.rs");
34include!("UnixFileSystemPermissionMode.rs");