3#ifndef TETL_ITERATOR_FULL_HPP
4#define TETL_ITERATOR_FULL_HPP
14constexpr auto full(C
const& c)
noexcept(
noexcept(c.full())) ->
decltype(c.full())
20template <
typename T,
size_t N>
constexpr auto full(C const &c) noexcept(noexcept(c.full())) -> decltype(c.full())
Returns whether the given container is full.
Definition full.hpp:14
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