Sprout/sprout/container/empty.hpp

44 lines
1.4 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2016-02-25 09:48:28 +00:00
Copyright (c) 2011-2016 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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_EMPTY_HPP
#define SPROUT_CONTAINER_EMPTY_HPP
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
#include <sprout/container/traits_fwd.hpp>
#include <sprout/container/container_traits.hpp>
namespace sprout {
//
// empty
//
// effect:
2016-04-10 04:48:41 +00:00
// sprout::container_range_traits<Container>::range_empty(cont)
// [default]
2016-04-10 04:48:41 +00:00
// ADL callable range_empty(cont) -> range_empty(cont)
// [default]
// Container is T[N] -> false
// callable cont.empty() -> cont.empty()
// otherwise -> sprout::size(cont) == 0
//
template<typename Container>
inline SPROUT_CONSTEXPR bool
empty(Container const& cont) {
2016-04-10 04:48:41 +00:00
return sprout::container_range_traits<Container const>::range_empty(cont);
}
template<typename T, std::size_t N>
inline SPROUT_CONSTEXPR bool
empty(T const (& arr)[N]) {
2016-04-10 04:48:41 +00:00
return sprout::container_range_traits<T const[N]>::range_empty(arr);
}
} // namespace sprout
#include <sprout/container/container_range_traits.hpp>
#endif // #ifndef SPROUT_CONTAINER_EMPTY_HPP