CRTP base class giving an EVE's Callable Object the constant function semantic. More...
#include <eve/traits/overload/impl/constant.hpp>
Defined in Header
Constants functions in EVE are built using a very common pattern. Inheriting from eve::constant_callable simplifies the implementation of such eve::callable by just requiring your eve::callable type to implement a static value
member function that provides the constant value using two parameters:
Constant functions in EVE also supports masking, which is directly implemented in eve::constant_callable.
Func | Type of current Callable Object being implemented. |
OptionsValues | Type of stored options. |
Options | List of supported option specifications. |
Public Member Functions | |
constexpr auto | operator[] (O o) const |
Adds an option to current callable. | |
constexpr auto | options () const |
Retrieves the current options' state, including processed default. | |