Sprout/sprout/container/empty.hpp

19 lines
443 B
C++
Raw Normal View History

#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>
namespace sprout {
//
// empty
//
template<typename Container>
inline SPROUT_CONSTEXPR bool empty(Container const& cont) {
2012-04-04 08:48:02 +00:00
return sprout::begin(cont) == sprout::end(cont);
}
} // namespace sprout
#endif // #ifndef SPROUT_CONTAINER_EMPTY_HPP