3#ifndef TETL_ITERATOR_EMPTY_HPP
4#define TETL_ITERATOR_EMPTY_HPP
15constexpr auto empty(C
const& c)
noexcept(
noexcept(c.empty())) ->
decltype(c.empty())
22template <
typename T,
size_t N>
constexpr auto empty(C const &c) noexcept(noexcept(c.empty())) -> decltype(c.empty())
Returns whether the given container is empty.
Definition empty.hpp:15
Definition adjacent_find.hpp:8
constexpr auto ignore_unused(Types &&...) -> void
Explicitly ignore arguments or variables.
Definition ignore_unused.hpp:17
A container that encapsulates fixed size arrays.
Definition array.hpp:48