13#ifndef RANGES_V3_FUNCTIONAL_IDENTITY_HPP
14#define RANGES_V3_FUNCTIONAL_IDENTITY_HPP
16#include <range/v3/detail/config.hpp>
18#include <range/v3/detail/prologue.hpp>
27 constexpr T && operator()(T && t)
const noexcept
31 using is_transparent = void;
35 using ident RANGES_DEPRECATED(
"Replace uses of ranges::ident with ranges::identity") =
46#include <range/v3/detail/epilogue.hpp>
Definition identity.hpp:25