2 releases

0.1.1 Aug 10, 2019
0.1.0 Aug 6, 2019

#157 in Rust patterns

Download history 1402783/week @ 2024-11-08 1445836/week @ 2024-11-15 1314587/week @ 2024-11-22 1348686/week @ 2024-11-29 1712647/week @ 2024-12-06 1531333/week @ 2024-12-13 858311/week @ 2024-12-20 785724/week @ 2024-12-27 1421273/week @ 2025-01-03 1645923/week @ 2025-01-10 1504799/week @ 2025-01-17 1609350/week @ 2025-01-24 1727639/week @ 2025-01-31 1871966/week @ 2025-02-07 778476/week @ 2025-02-14

4,665,697 downloads per month
Used in 485 crates (8 directly)

MIT license

25KB
112 lines

Provides a macro to simplify operator overloading. See the documentation for details and supported operators.

Example

extern crate overload;
use overload::overload;
use std::ops; // <- don't forget this or you'll get nasty errors

#[derive(PartialEq, Debug)]
struct Val {
    v: i32
}

overload!((a: ?Val) + (b: ?Val) -> Val { Val { v: a.v + b.v } });

The macro call in the snippet above generates the following code:

impl ops::Add<Val> for Val {
    type Output = Val;
    fn add(self, b: Val) -> Self::Output {
        let a = self;
        Val { v: a.v + b.v }
    }
}
impl ops::Add<&Val> for Val {
    type Output = Val;
    fn add(self, b: &Val) -> Self::Output {
        let a = self;
        Val { v: a.v + b.v }
    }
}
impl ops::Add<Val> for &Val {
    type Output = Val;
    fn add(self, b: Val) -> Self::Output {
        let a = self;
        Val { v: a.v + b.v }
    }
}
impl ops::Add<&Val> for &Val {
    type Output = Val;
    fn add(self, b: &Val) -> Self::Output {
        let a = self;
        Val { v: a.v + b.v }
    }
}

We are now able to add Vals and &Vals in any combination:

assert_eq!(Val{v:3} + Val{v:5}, Val{v:8});
assert_eq!(Val{v:3} + &Val{v:5}, Val{v:8});
assert_eq!(&Val{v:3} + Val{v:5}, Val{v:8});
assert_eq!(&Val{v:3} + &Val{v:5}, Val{v:8});

No runtime deps