-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #37356 - cristicbz:wrapsum, r=alexcrichton
Add impls for `&Wrapping`. Also `Sum`, `Product` impls for both `Wrapping` and `&Wrapping`. There are two changes here (split into two commits): - Ops for references to `&Wrapping` (`Add`, `Sub`, `Mul` etc.) similar to the way they are implemented for primitives. - Impls for `iter::{Sum,Product}` for `Wrapping`. As far as I know `impl` stability attributes don't really matter so I didn't bother breaking up the macro for two different kinds of stability. Happy to change if it does matter.
- Loading branch information
Showing
5 changed files
with
86 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT | ||
// 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. | ||
|
||
|
||
// implements the unary operator "op &T" | ||
// based on "op T" where T is expected to be `Copy`able | ||
macro_rules! forward_ref_unop { | ||
(impl $imp:ident, $method:ident for $t:ty) => { | ||
#[stable(feature = "rust1", since = "1.0.0")] | ||
impl<'a> $imp for &'a $t { | ||
type Output = <$t as $imp>::Output; | ||
|
||
#[inline] | ||
fn $method(self) -> <$t as $imp>::Output { | ||
$imp::$method(*self) | ||
} | ||
} | ||
} | ||
} | ||
|
||
// implements binary operators "&T op U", "T op &U", "&T op &U" | ||
// based on "T op U" where T and U are expected to be `Copy`able | ||
macro_rules! forward_ref_binop { | ||
(impl $imp:ident, $method:ident for $t:ty, $u:ty) => { | ||
#[stable(feature = "rust1", since = "1.0.0")] | ||
impl<'a> $imp<$u> for &'a $t { | ||
type Output = <$t as $imp<$u>>::Output; | ||
|
||
#[inline] | ||
fn $method(self, other: $u) -> <$t as $imp<$u>>::Output { | ||
$imp::$method(*self, other) | ||
} | ||
} | ||
|
||
#[stable(feature = "rust1", since = "1.0.0")] | ||
impl<'a> $imp<&'a $u> for $t { | ||
type Output = <$t as $imp<$u>>::Output; | ||
|
||
#[inline] | ||
fn $method(self, other: &'a $u) -> <$t as $imp<$u>>::Output { | ||
$imp::$method(self, *other) | ||
} | ||
} | ||
|
||
#[stable(feature = "rust1", since = "1.0.0")] | ||
impl<'a, 'b> $imp<&'a $u> for &'b $t { | ||
type Output = <$t as $imp<$u>>::Output; | ||
|
||
#[inline] | ||
fn $method(self, other: &'a $u) -> <$t as $imp<$u>>::Output { | ||
$imp::$method(*self, *other) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters