Sprout/sprout/container/empty.hpp
bolero-MURAKAMI c6bd230ee4 fix inline
add container/indexes.hpp
add tuple/indexes.hpp
2012-04-04 22:23:41 +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>
inline SPROUT_CONSTEXPR bool empty(Container const& cont) {
return sprout::begin(cont) == sprout::end(cont);
}
} // namespace sprout
#endif // #ifndef SPROUT_CONTAINER_EMPTY_HPP