//! Arena operations.
use io;
use c_uint;
use ;
/// A type providing access to the current limit on the number of arenas.
///
/// # Examples
///
/// ```
/// use jemalloc_ctl::arenas::NArenas;
///
/// let narenas = NArenas::new().unwrap();
///
/// println!("number of arenas: {}", narenas.get().unwrap());
/// ```
;