/*============================================================================= Copyright (c) 2015 Paul Fultz II eval.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 FIT_GUARD_EVAL_H #define FIT_GUARD_EVAL_H /// eval /// ==== /// /// Description /// ----------- /// /// The `eval` function will evaluate a "thunk". This can be either a nullary /// function or it can be a unary function that takes the identity function as /// the first parameter(which is helpful to delay compile-time checking). /// Also, additional parameters can be passed to `eval` to delay /// compiliation(so that result can depend on template parameters). /// /// Synopsis /// -------- /// /// template /// constexpr auto eval(F&& f, Ts&&...); /// /// Requirements /// ------------ /// /// F must be: /// /// * [EvaluatableFunctionObject](concepts.md#evaluatablefunctionobject) /// /// Example /// ------- /// /// assert(fit::eval([]{ return 3; }) == 3); /// #include #include #include #include namespace fit { namespace detail { struct simple_eval { template constexpr FIT_SFINAE_RESULT(F) operator()(F&& f, Ts&&...xs) const FIT_SFINAE_RETURNS (fit::always_ref(f)(xs...)()); }; struct id_eval { template constexpr FIT_SFINAE_RESULT(F, id_) operator()(F&& f, Ts&&...xs) const FIT_SFINAE_RETURNS (fit::always_ref(f)(xs...)(fit::identity)); }; } FIT_DECLARE_STATIC_VAR(eval, fit::conditional_adaptor); } // namespace fit #endif