Represents the function object unary adapter. More...
#include <OpenMS/CONCEPT/UnaryComposeFunctionAdapter.h>
Public Member Functions | |
UnaryComposeFunctionAdapter (const OP1 &o1, const OP2 &o2) | |
Constructor. More... | |
OP1::result_type | operator() (const typename OP2::argument_type &x) const |
function call More... | |
Private Attributes | |
OP1 | op1_ |
OP2 | op2_ |
Represents the function object unary adapter.
This simplest and most fundamental compose function adapter uses the result of a unary operation as input to another unary operation. For more details, please refer to the book "The C++ Standard Library" by Nicolay Josuttis. This class is implemented in order to reduce (substitute) the usage of user defined functors. You can use it for example to combine several operation in one function call. Here is an example of combining "minus 5 and multiply by 10": compose_f_gx
(bind2nd(multiplies<int>(),10),bind2nd(minus<int>(), 5))
Another example of compose_f_gx_t
usage is along with mem_ref_fun
function to search for elements in container based on the certain element's property. Here is an example:
The Example has the following output:
Copyright 1999 by Addison Wesley Longman, Inc. and Nicolai M. Josuttis. All rights Reserved.
Permission to use, copy, modify and distribute this software for personal and educational use is hereby granted without fee, provided that the above copyright notice appears in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the names of Addison Wesley Longman or the author are not used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Addison Wesley Longman and the author make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.
ADDISON WESLEY LONGMAN AND THE AUTHOR DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ADDISON WESLEY LONGMAN OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
inline |
Constructor.
|
inline |
function call
References UnaryComposeFunctionAdapter< OP1, OP2 >::op1_, and UnaryComposeFunctionAdapter< OP1, OP2 >::op2_.
|
private |
Referenced by UnaryComposeFunctionAdapter< OP1, OP2 >::operator()().
|
private |
Referenced by UnaryComposeFunctionAdapter< OP1, OP2 >::operator()().
OpenMS / TOPP release 2.3.0 | Documentation generated on Tue Jan 9 2018 18:22:14 using doxygen 1.8.13 |