boost::yap::left
// In header: <boost/yap/algorithm.hpp> template<typename Expr> decltype(auto) constexpr left(Expr && expr);
Returns the left operand in a binary operator expression.
Equivalent to get(expr, 0_c).
get(expr, 0_c)
left() is only valid if Expr is a binary operator expression.
left()