@@ -324,21 +324,27 @@ pub trait Real: Signed
324
324
/// Inverse hyperbolic tangent function.
325
325
#[ inline( always) ] pub fn atanh < T : Real > ( value : T ) -> T { value. atanh ( ) }
326
326
327
- /// Collects the bitwise operators under one trait.
328
- pub trait Bitwise : Not < Self >
327
+ pub trait Bounded {
328
+ // FIXME (#5527): These should be associated constants
329
+ fn min_value ( ) -> Self ;
330
+ fn max_value ( ) -> Self ;
331
+ }
332
+
333
+ /// Numbers with a fixed binary representation.
334
+ pub trait Bitwise : Bounded
335
+ + Not < Self >
329
336
+ BitAnd < Self , Self >
330
337
+ BitOr < Self , Self >
331
338
+ BitXor < Self , Self >
332
339
+ Shl < Self , Self >
333
- + Shr < Self , Self > { }
334
-
335
- /// A trait for common counting operations on bits.
336
- pub trait BitCount {
340
+ + Shr < Self , Self > {
337
341
/// Returns the number of bits set in the number.
338
342
///
339
343
/// # Example
340
344
///
341
345
/// ```rust
346
+ /// use std::num::Bitwise;
347
+ ///
342
348
/// let n = 0b0101000u16;
343
349
/// assert_eq!(n.population_count(), 2);
344
350
/// ```
@@ -348,6 +354,8 @@ pub trait BitCount {
348
354
/// # Example
349
355
///
350
356
/// ```rust
357
+ /// use std::num::Bitwise;
358
+ ///
351
359
/// let n = 0b0101000u16;
352
360
/// assert_eq!(n.leading_zeros(), 10);
353
361
/// ```
@@ -357,18 +365,14 @@ pub trait BitCount {
357
365
/// # Example
358
366
///
359
367
/// ```rust
368
+ /// use std::num::Bitwise;
369
+ ///
360
370
/// let n = 0b0101000u16;
361
371
/// assert_eq!(n.trailing_zeros(), 3);
362
372
/// ```
363
373
fn trailing_zeros ( & self ) -> Self ;
364
374
}
365
375
366
- pub trait Bounded {
367
- // FIXME (#5527): These should be associated constants
368
- fn min_value ( ) -> Self ;
369
- fn max_value ( ) -> Self ;
370
- }
371
-
372
376
/// Specifies the available operations common to all of Rust's core numeric primitives.
373
377
/// These may not always make sense from a purely mathematical point of view, but
374
378
/// may be useful for systems programming.
@@ -394,8 +398,7 @@ pub trait Primitive: Clone
394
398
/// A collection of traits relevant to primitive signed and unsigned integers
395
399
pub trait Int : Integer
396
400
+ Primitive
397
- + Bitwise
398
- + BitCount { }
401
+ + Bitwise { }
399
402
400
403
/// Used for representing the classification of floating point numbers
401
404
#[ deriving( Eq ) ]
0 commit comments