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

Macro BOOST_PROTO_A_const_ref

BOOST_PROTO_A_const_ref — Generates sequences like A0 const &, A1 const &, ... AN-1 const & .

Synopsis

// In header: <boost/proto/repeat.hpp>

BOOST_PROTO_A_const_ref(N)

Description

Intended for use with the BOOST_PROTO_REPEAT() and BOOST_PROTO_LOCAL_ITERATE() macros.

BOOST_PROTO_A_const_ref(N) generates sequences like:

A0 const &, A1 const &, ... AN-1 const &


PrevUpHomeNext