2013-10-21 21:41:32 +02:00
|
|
|
// Copyright 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.
|
|
|
|
|
2014-06-23 22:58:01 +00:00
|
|
|
//! The boolean type
|
2013-05-26 09:39:55 -05:00
|
|
|
|
2014-05-28 19:53:37 -07:00
|
|
|
#![doc(primitive = "bool")]
|
2014-12-18 19:13:32 -08:00
|
|
|
#![stable]
|
2014-05-28 19:53:37 -07:00
|
|
|
|