56template <
typename Iterated_Type,
typename Iterator>
58 static constexpr bool value =
59 std::is_pointer_v<Iterator> or
61 typename std::iterator_traits<Iterator>::value_type,
67template <
typename Iterated_Type,
typename Iterator>
constexpr bool is_pointer_iterator_v
Shorthand for is_pointer_iterator.
Definition is_pointer_iterator.hpp:68
Main namespace of the library.
Definition basic_types.hpp:48
Decide if a type is a pointer or iterator to another.
Definition is_pointer_iterator.hpp:57