|
| template<class res_type , class arg1_type , class arg2_type , class _Functor > |
| FunctorRef< _Functor, res_type, arg1_type, arg2_type > | functorRef (_Functor &f_r) |
| | Convenience function creating a binary FunctorRef. More...
|
| |
| template<class res_type , class arg1_type , class _Functor > |
| FunctorRef< _Functor, res_type, arg1_type > | functorRef (_Functor &f_r) |
| |
| template<class res_type , class _Functor > |
| FunctorRef< _Functor, res_type > | functorRef (_Functor &f_r) |
| |
| template<class T > |
| Constant< T > | constant (const T &value) |
| |
| True | true_c () |
| | Convenience function for creating a True. More...
|
| |
| False | false_c () |
| | Convenience function for creating a False. More...
|
| |
| template<class _Condition > |
| Not< _Condition > | not_c (_Condition cond_r) |
| | Convenience function for creating a Not from _Condition. More...
|
| |
| template<class _ACondition , class _BCondition > |
| Or< _ACondition, _BCondition > | or_c (_ACondition conda_r, _BCondition condb_r) |
| | Convenience function for creating a Or from two conditions conda_r OR condb_r. More...
|
| |
| template<class _ACondition , class _BCondition > |
| Chain< _ACondition, _BCondition > | chain (_ACondition conda_r, _BCondition condb_r) |
| | Convenience function for creating a Chain from two conditions conda_r and condb_r. More...
|
| |
| template<class _Tp > |
| GetFirst< _Tp > | getFirst (_Tp &result_r) |
| | Convenience function for creating GetFirst. More...
|
| |
| template<class _Tp > |
| GetLast< _Tp > | getLast (_Tp &result_r) |
| | Convenience function for creating GetLast. More...
|
| |
| template<class _OutputIterator > |
| GetAll< _OutputIterator > | getAll (_OutputIterator result_r) |
| | Convenience function for creating GetAll. More...
|
| |