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