unary_function |
The abstract base structure of all unary function objects. This structure defines two useful typedefs that are used by most of its derived classes.
#include <functional>
template< class Arg, class Result >
struct unary_function
{
typedef Arg argument_type;
typedef Result result_type;
};
Copyright©1994-2026 Recursion Software LLC
All Rights Reserved - For use by licensed users only.