5#ifndef BEAST_UNIT_TEST_DETAIL_CONST_CONTAINER_HPP 
    6#define BEAST_UNIT_TEST_DETAIL_CONST_CONTAINER_HPP 
   16template <
class Container>
 
   41    using iterator = 
typename cont_type::const_iterator;
 
 
 
Adapter to constrain a container interface.
 
bool empty() const
Returns true if the container is empty.
 
cont_type const & cont() const
 
const_iterator cbegin() const
 
typename cont_type::const_iterator iterator
 
typename cont_type::difference_type difference_type
 
const_iterator begin() const
Returns forward iterators for traversal.
 
const_iterator cend() const
 
typename cont_type::value_type value_type
 
const_iterator end() const
 
typename cont_type::const_iterator const_iterator
 
typename cont_type::size_type size_type
 
size_type size() const
Returns the number of items in the container.