Sprout/sprout/container/empty.hpp
2012-04-04 17:48:02 +09:00

18 lines
443 B
C++

#ifndef SPROUT_CONTAINER_EMPTY_HPP
#define SPROUT_CONTAINER_EMPTY_HPP
#include <sprout/config.hpp>
#include <sprout/container/begin.hpp>
#include <sprout/container/end.hpp>
namespace sprout {
//
// empty
//
template<typename Container>
SPROUT_CONSTEXPR inline bool empty(Container const& cont) {
return sprout::begin(cont) == sprout::end(cont);
}
} // namespace sprout
#endif // #ifndef SPROUT_CONTAINER_EMPTY_HPP