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

PrevUpHomeNext
statement::bind

Binds parameters to a statement.

template<
    class... T>
bound_statement_tuple< std::tuple< see-below > >
bind(
    T&&... params) const;
  » more...

template<
    class WritableFieldTuple,
    typename EnableIf = typename std::enable_if<detail::is_writable_field_tuple<WritableFieldTuple>::value>::type>
bound_statement_tuple< typename std::decay< WritableFieldTuple >::type >
bind(
    WritableFieldTuple&& params) const;
  » more...

Binds parameters to a statement (iterator range overload).

template<
    class FieldViewFwdIterator,
    typename EnableIf = typename std::enable_if<            detail::is_field_view_forward_iterator<FieldViewFwdIterator>::value>::type>
bound_statement_iterator_range< FieldViewFwdIterator >
bind(
    FieldViewFwdIterator params_first,
    FieldViewFwdIterator params_last) const;
  » more...

PrevUpHomeNext