/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_CONTAINER_SHRINK_TO_FIT_HPP #define SPROUT_CONTAINER_SHRINK_TO_FIT_HPP #include #include #include #include #include #include #include namespace sprout_adl { sprout::not_found_via_adl container_shrink_to_fit(...); } // namespace sprout_adl namespace sprout { namespace detail { template struct has_mem_shrink_to_fit_test { public: template< typename U = T, typename = typename sprout::identity().shrink_to_fit())>::type > static sprout::true_type test(int); static sprout::false_type test(...); }; #if defined(_MSC_VER) template::test(0))>::type> struct has_mem_shrink_to_fit : public Base_ {}; #else template struct has_mem_shrink_to_fit : public sprout::identity::test(0))>::type {}; #endif template inline SPROUT_CXX14_CONSTEXPR typename std::enable_if< sprout::detail::has_mem_shrink_to_fit::value >::type container_shrink_to_fit_default(Container&& cont) { return SPROUT_FORWARD(Container, cont).shrink_to_fit(); } template inline SPROUT_CXX14_CONSTEXPR typename std::enable_if< !sprout::detail::has_mem_shrink_to_fit::value >::type container_shrink_to_fit_default(Container&&) {} } // namespace detail namespace container_detail { template inline SPROUT_CXX14_CONSTEXPR void container_shrink_to_fit(Container&& cont) { return sprout::detail::container_shrink_to_fit_default(SPROUT_FORWARD(Container, cont)); } } // namespace container_detail // // shrink_to_fit // // effect: // ADL callable container_shrink_to_fit(cont) -> container_shrink_to_fit(cont) // [default] // callable cont.shrink_to_fit() -> cont.shrink_to_fit() // otherwise -> no effects // template inline SPROUT_CXX14_CONSTEXPR void shrink_to_fit(Container&& cont) { using sprout::container_detail::container_shrink_to_fit; using sprout_adl::container_shrink_to_fit; return container_shrink_to_fit(SPROUT_FORWARD(Container, cont)); } } // namespace sprout #include #endif // #ifndef SPROUT_CONTAINER_SHRINK_TO_FIT_HPP