Hallo,

    I would like to override operators for boost::function.
Forexample I was thinking of an operator "-" :

template <T>
function<T> operator - (const function<T>& a) {
         // what do I write here in roder to return the symmetric function?
}

Thanks

Stefano