7 #ifndef IDENTITY_PREDICATE_HPP_ 8 #define IDENTITY_PREDICATE_HPP_ 15 template<
class T>
struct Identity :
public std::unary_function<T,T> {
16 T
const& operator()(T
const& x)
const {
return x;}
17 T& operator()(T& x)
const {
return x;}
Main namespace of vdj_pipe library.
Definition: sequence_file.hpp:14
why is it not in STL?
Definition: identity_predicate.hpp:15