4#ifndef TETL_ITERATOR_DATA_HPP
5#define TETL_ITERATOR_DATA_HPP
12constexpr auto data(C& c)
noexcept(
noexcept(
c.
data())) ->
decltype(c.data())
19constexpr auto data(C
const& c)
noexcept(
noexcept(
c.
data())) ->
decltype(c.data())
25template <
typename T, size_t N>
26constexpr auto data(T (&array)[N])
noexcept -> T*
constexpr auto data(C const &c) noexcept(noexcept(c.data())) -> decltype(c.data())
Definition data.hpp:19
constexpr auto data(C &c) noexcept(noexcept(c.data())) -> decltype(c.data())
Returns a pointer to the block of memory containing the elements of the container.
Definition data.hpp:12
constexpr auto data(T(&array)[N]) noexcept -> T *
Definition data.hpp:26
Definition adjacent_find.hpp:9