Function operator()
Summary
#include <include/EASTL/functional.h>
(1) Operation1::result_type operator()(const typename Operation2::argument_type &x) const
(2) Operation1::result_type operator()(typename Operation2::argument_type &x) const
(3) Operation1::result_type operator()(const typename Operation2::argument_type &x, const typename Operation3::argument_type &y) const
(4) Operation1::result_type operator()(typename Operation2::argument_type &x, typename Operation3::argument_type &y) const
Function overload
Synopsis
#include <include/EASTL/functional.h>
Operation1::result_type operator()(const typename Operation2::argument_type &x) const
Description
No description yet.
Source
Lines 525-526 in include/EASTL/functional.h.
typename Operation1::result_type operator()(const typename Operation2::argument_type& x) const
{ return op1(op2(x),op3(x)); }
Synopsis
#include <include/EASTL/functional.h>
Operation1::result_type operator()(typename Operation2::argument_type &x) const
Description
No description yet.
Source
Lines 528-529 in include/EASTL/functional.h.
typename Operation1::result_type operator()(typename Operation2::argument_type& x) const
{ return op1(op2(x),op3(x)); }
Synopsis
#include <include/EASTL/functional.h>
Operation1::result_type operator()(const typename Operation2::argument_type &x, const typename Operation3::argument_type &y) const
Description
No description yet.
Source
Lines 531-532 in include/EASTL/functional.h.
typename Operation1::result_type operator()(const typename Operation2::argument_type& x,const typename Operation3::argument_type& y) const
{ return op1(op2(x),op3(y)); }
Synopsis
#include <include/EASTL/functional.h>
Operation1::result_type operator()(typename Operation2::argument_type &x, typename Operation3::argument_type &y) const
Description
No description yet.
Source
Lines 534-535 in include/EASTL/functional.h.
typename Operation1::result_type operator()(typename Operation2::argument_type& x, typename Operation3::argument_type& y) const
{ return op1(op2(x),op3(y)); }