diff --git a/octa/functional.h b/octa/functional.h index 03e3b7e..78edbc4 100644 --- a/octa/functional.h +++ b/octa/functional.h @@ -79,6 +79,14 @@ namespace octa { private: T p_fn; }; + + template UnaryNegate not1(const T &fn) { + return UnaryNegate(fn); + } + + template BinaryNegate not2(const T &fn) { + return BinaryNegate(fn); + } } #endif \ No newline at end of file