eval overloads

Synopses

Declared in <bdlf_bind.h>

Return the first value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<1> const& placeHolder);

Return the tenth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<10> const& placeHolder);

Return the eleventh value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<11> const& placeHolder);

Return the twelfth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<12> const& placeHolder);

Return the thirteenth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<13> const& placeHolder);

Return the fourteenth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<14> const& placeHolder);

Return the second value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<2> const& placeHolder);

Return the third value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<3> const& placeHolder);

Return the fourth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<4> const& placeHolder);

Return the fifth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<5> const& placeHolder);

Return the sixth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<6> const& placeHolder);

Return the seventh value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<7> const& placeHolder);

Return the eighth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<8> const& placeHolder);

Return the ninth value from the specified argument tuple.

static
ReturnType
eval(
    t_ARG_TUPLE& argTuple,
    PlaceHolder<9> const& placeHolder);

Return Value

  • the first argument from argTuple

  • the tenth argument from argTuple

  • the eleventh argument from argTuple

  • the twelfth argument from argTuple

  • the thirteenth argument from argTuple

  • the fourteenth argument from argTuple

  • the second argument from argTuple

  • the third argument from argTuple

  • the fourth argument from argTuple

  • the fifth argument from argTuple

  • the sixth argument from argTuple

  • the seventh argument from argTuple

  • the eighth argument from argTuple

  • the ninth argument from argTuple

Parameters

Name

Description

argTuple

invocation argument tuple

placeHolder

place‐holder selecting argument 1

Created with MrDocs