#ifndef SPROUT_CONTAINER_EMPTY_HPP #define SPROUT_CONTAINER_EMPTY_HPP #include #include namespace sprout { // // empty // template SPROUT_CONSTEXPR inline bool empty(Container const& cont) { return sprout::size(cont) == 0; } } // namespace sprout #endif // #ifndef SPROUT_CONTAINER_EMPTY_HPP