Sprout/sprout/container/range_functions_fwd.hpp

95 lines
2.9 KiB
C++
Raw Normal View History

/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_CONTAINER_RANGE_FUNCTIONS_FWD_HPP
#define SPROUT_CONTAINER_RANGE_FUNCTIONS_FWD_HPP
#include <sprout/config.hpp>
#include <sprout/container/container_traits.hpp>
namespace sprout {
//
// begin
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container>::iterator
begin(Container& cont);
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::iterator
begin(Container const& cont);
//
// end
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container>::iterator
end(Container& cont);
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::iterator
end(Container const& cont);
//
// size
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::size_type
size(Container const& cont);
//
// empty
//
template<typename Container>
SPROUT_CONSTEXPR bool
empty(Container const& cont);
//
// front
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container>::reference
front(Container& cont);
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::reference
front(Container const& cont);
//
// back
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container>::reference
back(Container& cont);
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::reference
back(Container const& cont);
//
// at
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container>::reference
at(Container& cont, typename sprout::container_traits<Container>::size_type i);
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::reference
at(Container const& cont, typename sprout::container_traits<Container const>::size_type i);
2014-07-12 12:37:49 +00:00
//
// data
//
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container>::pointer
data(Container& cont);
template<typename Container>
SPROUT_CONSTEXPR typename sprout::container_traits<Container const>::pointer
data(Container const& cont);
} // namespace sprout
#include <sprout/container/size.hpp>
#include <sprout/container/empty.hpp>
#endif // #ifndef SPROUT_CONTAINER_RANGE_FUNCTIONS_FWD_HPP