/*============================================================================= Copyright (c) 2012 Paul Fultz II implicit.h 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 BOOST_HOF_GUARD_FUNCTION_IMPLICIT_H #define BOOST_HOF_GUARD_FUNCTION_IMPLICIT_H /// implicit /// ======== /// /// Description /// ----------- /// /// The `implicit` adaptor is a static function adaptor that uses the type /// that the return value can be converted to, in order to determine the type /// of the template parameter. In essence, it will deduce the type for the /// template parameter using the type of variable the result is assigned to. /// Since it is a static function adaptor, the function must be default /// constructible. /// /// Synopsis /// -------- /// /// template