| 92 | /// \internal_ |
| 93 | template<class Arg1, class Arg2, class Result> |
| 94 | struct binary_function |
| 95 | { |
| 96 | typedef Arg1 first_argument_type; |
| 97 | typedef Arg2 second_argument_type; |
| 98 | typedef Result result_type; |
| 99 | }; |
| 100 | |
| 101 | /// \internal_ |
| 102 | template<class Arg1, class Arg2, class Arg3, class Result> |
nothing calls this directly
no outgoing calls
no test coverage detected