In the following code, what is the advantage of using &&?
The code is from answer at Specialize same operator for different traits
From this question, I get that an && argument means it is a reference that can be modified by the function.
The decay_t probably prevents the compiler to interpret a reference to a variable as an array, as in What is std::decay and when it should be used?
std::forward is perfect forwarding as described here. Why do we need this forwarding?
Thanks.
#include <iostream>
#include <type_traits>
#include<utility>
class A;
template <typename T>
struct is_A : std::false_type {};
template <> struct is_A<A> : std::true_type {};
template <typename T>
struct is_int : std::false_type {};
template <> struct is_int<int> : std::true_type {};
template <> struct is_int<long> : std::true_type {};
class A{
public:
    int val;
    void print(void){
        std::cout << val << std::endl;
    }
    template <typename T1>
    std::enable_if_t<is_int<std::decay_t<T1>>::value, void>
    operator=(T1 && input){
        val = 2*std::forward<T1>(input);
    }
    template <typename T1>
    std::enable_if_t<is_A<std::decay_t<T1>>::value,void>
    operator=(T1 && Bb){
        val = 5*std::forward<T1>(Bb).val;
    }
};
int main(void){
    A Aa;
    A Bb;
    int in_a = 3;
    Aa = in_a;
    Bb = Aa;
    Aa.print(); //This should give 6. (3x2)
    Bb.print(); //This should give 30. (6x5)
}
 
     
    