diff options
Diffstat (limited to 'src/index.rs')
-rw-r--r-- | src/index.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/index.rs b/src/index.rs index 25d5eaff..7fb591f4 100644 --- a/src/index.rs +++ b/src/index.rs @@ -88,18 +88,18 @@ impl fmt::Display for Linear { } } -/// Copyright 2015 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 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 +// Copyright 2015 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 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) => { impl<'a> $imp<$u> for &'a $t { |