2012-03-31 07:24:13 +00:00
|
|
|
#ifndef SPROUT_CONTAINER_EMPTY_HPP
|
|
|
|
#define SPROUT_CONTAINER_EMPTY_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-04-04 08:48:02 +00:00
|
|
|
#include <sprout/container/begin.hpp>
|
|
|
|
#include <sprout/container/end.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// empty
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool empty(Container const& cont) {
|
2012-04-04 08:48:02 +00:00
|
|
|
return sprout::begin(cont) == sprout::end(cont);
|
2012-03-31 07:24:13 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_EMPTY_HPP
|