1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// Copyright 2015 Brendan Zabarauskas
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! Temporary traits for function operator overloading, pending the stabilization of `Fn`, `FnMut`,
//! and `FnOnce`.
//!
//! # Example
//!
//! ```rust
//! use fn_ops::*;
//!
//! struct IsMultipleOf(i32);
//!
//! impl FnOnce<(i32, i32)> for IsMultipleOf {
//!     type Output = bool;
//!
//!     fn call_once(self, (x, y): (i32, i32)) -> bool { self.call((x, y)) }
//! }
//!
//! impl FnMut<(i32, i32)> for IsMultipleOf {
//!     fn call_mut(&mut self, (x, y): (i32, i32)) -> bool { self.call((x, y)) }
//! }
//!
//! impl Fn<(i32, i32)> for IsMultipleOf {
//!     fn call(&self, (x, y): (i32, i32)) -> bool {
//!         x * self.0 == y
//!     }
//! }
//!
//! fn assert_fn<Args, F: Fn<Args, Output = bool>>(args: Args, f: F) {
//!     assert!(f.call(args))
//! }
//!
//! assert_fn((1, 2), IsMultipleOf(2));
//! assert_fn((1, 2, 3), |x, y, z| x != y && y != z && z != x);
//! ```

use std::ops;


/// A version of the call operator that takes a by-value receiver.
///
/// This is implemented for:
///
/// - `std::ops::FnOnce() -> Output`
/// - `std::ops::FnOnce(a: A) -> Output`
/// - `std::ops::FnOnce(a: A, b: B) -> Output`
/// - `std::ops::FnOnce(a: A, b: B, c: C) -> Output`
/// - `std::ops::FnOnce(a: A, b: B, c: C, d: D) -> Output`
/// - `std::ops::FnOnce(a: A, b: B, c: C, d: D, e: E) -> Output`
pub trait FnOnce<Args> {
    type Output;
    fn call_once(self, args: Args) -> Self::Output;
}

/// A version of the call operator that takes a mutable receiver.
///
/// This is implemented for:
///
/// - `std::ops::Fn() -> Output`
/// - `std::ops::Fn(a: A) -> Output`
/// - `std::ops::Fn(a: A, b: B) -> Output`
/// - `std::ops::Fn(a: A, b: B, c: C) -> Output`
/// - `std::ops::Fn(a: A, b: B, c: C, d: D) -> Output`
/// - `std::ops::Fn(a: A, b: B, c: C, d: D, e: E) -> Output`
pub trait FnMut<Args>: FnOnce<Args> {
    fn call_mut(&mut self, args: Args) -> Self::Output;
}

/// A version of the call operator that takes an immutable receiver.
///
/// This is implemented for:
///
/// - `std::ops::Fn() -> Output`
/// - `std::ops::Fn(a: A) -> Output`
/// - `std::ops::Fn(a: A, b: B) -> Output`
/// - `std::ops::Fn(a: A, b: B, c: C) -> Output`
/// - `std::ops::Fn(a: A, b: B, c: C, d: D) -> Output`
/// - `std::ops::Fn(a: A, b: B, c: C, d: D, e: E) -> Output`
pub trait Fn<Args>: FnMut<Args> {
    fn call(&self, args: Args) -> Self::Output;
}

macro_rules! impl_fn {
    () => {
        impl<F, Output> FnOnce<()> for F where
            F: ops::FnOnce() -> Output,
        {
            type Output = Output;
            #[inline]
            fn call_once(self, (): ()) -> Self::Output { self() }
        }

        impl<F, Output> FnMut<(),> for F where
            F: ops::FnMut() -> Output,
        {
            #[inline]
            fn call_mut(&mut self, (): ()) -> Output { self() }
        }

        impl<F, Output> Fn<()> for F where
            F: ops::Fn() -> Output,
        {
            #[inline]
            fn call(&self, (): ()) -> Output { self() }
        }
    };
    ($($arg:ident: $Arg:ident),*) => {
        impl<F, $($Arg,)* Output> FnOnce<($($Arg),*,)> for F where
            F: ops::FnOnce($($Arg),*) -> Output,
        {
            type Output = Output;
            #[inline]
            fn call_once(self, ($($arg),*,): ($($Arg),*,)) -> Self::Output { self($($arg),*) }
        }

        impl<F, $($Arg,)* Output> FnMut<($($Arg),*,)> for F where
            F: ops::FnMut($($Arg),*) -> Output,
        {
            #[inline]
            fn call_mut(&mut self, ($($arg),*,): ($($Arg),*,)) -> Output { self($($arg),*) }
        }

        impl<F, $($Arg,)* Output> Fn<($($Arg),*,)> for F where
            F: ops::Fn($($Arg),*) -> Output,
        {
            #[inline]
            fn call(&self, ($($arg),*,): ($($Arg),*,)) -> Output { self($($arg),*) }
        }
    };
}

impl_fn!();
impl_fn!(a: A);
impl_fn!(a: A, b: B);
impl_fn!(a: A, b: B, c: C);
impl_fn!(a: A, b: B, c: C, d: D);
impl_fn!(a: A, b: B, c: C, d: D, e: E);


#[cfg(test)]
mod tests {
    use super::*;

    fn call_polymorphic<'a, T, U, F>(t: &'a T, u: &'a U, mut f: F) -> bool where
        F: Fn<(&'a T, &'a U), Output = bool>,
    {
        f.call((t, u)) && f.call_mut((t, u)) && f.call_once((t, u))
    }

    #[test]
    fn test_polymorphism() {
        assert!(call_polymorphic(&1, &1, |t, u| t == u));
    }
}