| 132 | // get<N>() |
| 133 | template<size_t N, class Arg> |
| 134 | inline typename proto::result_of::make_expr< |
| 135 | proto::tag::function, detail::get_func<N>, const Arg& |
| 136 | >::type const |
| 137 | get(const Arg &arg) |
| 138 | { |
| 139 | return proto::make_expr<proto::tag::function>( |
| 140 | detail::get_func<N>(), ::boost::ref(arg) |
| 141 | ); |
| 142 | } |
| 143 | |
| 144 | } // end lambda namespace |
| 145 | } // end compute namespace |