Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template expression_function

boost::yap::expression_function

Synopsis

// In header: <boost/yap/algorithm.hpp>

template<typename Expr> 
struct expression_function {

  // public member functions
  template<typename... U> decltype(auto) constexpr operator()(U &&...);

  // public data members
  Expr expr;
};

Description

A callable type that evaluates its contained expression when called.

See Also:

make_expression_function()

expression_function public member functions

  1. template<typename... U> decltype(auto) constexpr operator()(U &&... u);

PrevUpHomeNext