2013-03-27 15:20:44 -04:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 16:48:01 -08:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-19 16:52:32 -07:00
|
|
|
/*!
|
|
|
|
|
|
|
|
Functions for the unit type.
|
|
|
|
|
|
|
|
*/
|
2012-08-30 10:14:54 -07:00
|
|
|
|
2013-05-08 21:11:23 +10:00
|
|
|
#[cfg(not(test))]
|
2013-03-27 15:20:44 -04:00
|
|
|
use prelude::*;
|
2013-07-31 18:19:26 +04:00
|
|
|
#[cfg(not(test))]
|
|
|
|
use num::Zero;
|
|
|
|
|
2013-05-08 21:11:23 +10:00
|
|
|
#[cfg(not(test))]
|
2013-02-14 11:47:00 -08:00
|
|
|
impl Eq for () {
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-21 21:20:48 -07:00
|
|
|
fn eq(&self, _other: &()) -> bool { true }
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-21 21:20:48 -07:00
|
|
|
fn ne(&self, _other: &()) -> bool { false }
|
2012-09-19 18:00:26 -07:00
|
|
|
}
|
2012-08-30 10:14:54 -07:00
|
|
|
|
2013-05-08 21:11:23 +10:00
|
|
|
#[cfg(not(test))]
|
2013-02-14 11:47:00 -08:00
|
|
|
impl Ord for () {
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-21 21:20:48 -07:00
|
|
|
fn lt(&self, _other: &()) -> bool { false }
|
2012-09-19 18:00:26 -07:00
|
|
|
}
|
2012-08-30 10:14:54 -07:00
|
|
|
|
2013-05-08 21:11:23 +10:00
|
|
|
#[cfg(not(test))]
|
2013-03-08 20:05:20 -05:00
|
|
|
impl TotalOrd for () {
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-21 21:20:48 -07:00
|
|
|
fn cmp(&self, _other: &()) -> Ordering { Equal }
|
2013-03-08 20:05:20 -05:00
|
|
|
}
|
2013-03-27 15:20:44 -04:00
|
|
|
|
2013-05-08 21:11:23 +10:00
|
|
|
#[cfg(not(test))]
|
2013-03-27 15:20:44 -04:00
|
|
|
impl TotalEq for () {
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-27 15:20:44 -04:00
|
|
|
fn equals(&self, _other: &()) -> bool { true }
|
|
|
|
}
|
2013-07-31 18:19:26 +04:00
|
|
|
|
2013-09-11 21:49:25 -07:00
|
|
|
#[cfg(not(test))]
|
|
|
|
impl Default for () {
|
|
|
|
#[inline]
|
|
|
|
fn default() -> () { () }
|
|
|
|
}
|
|
|
|
|
2013-07-31 18:19:26 +04:00
|
|
|
#[cfg(not(test))]
|
|
|
|
impl Zero for () {
|
2013-08-09 02:19:50 +04:00
|
|
|
#[inline]
|
2013-07-31 18:19:26 +04:00
|
|
|
fn zero() -> () { () }
|
2013-08-09 02:19:50 +04:00
|
|
|
#[inline]
|
2013-07-31 18:19:26 +04:00
|
|
|
fn is_zero(&self) -> bool { true }
|
|
|
|
}
|