Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/array/array2.cpp @ 33

Last change on this file since 33 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 978 bytes
Line 
1/* example for using class array<>
2 * (C) Copyright Nicolai M. Josuttis 2001.
3 * Distributed under the Boost Software License, Version 1.0. (See
4 * accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt)
6 */
7
8#include <algorithm>
9#include <functional>
10#include <boost/array.hpp>
11#include "print.hpp"
12using namespace std;
13using namespace boost;
14
15int main()
16{
17    // create and initialize array
18    array<int,10> a = { { 1, 2, 3, 4, 5 } };
19
20    print_elements(a);
21
22    // modify elements directly
23    for (unsigned i=0; i<a.size(); ++i) {
24        ++a[i];
25    }
26    print_elements(a);
27
28    // change order using an STL algorithm
29    reverse(a.begin(),a.end());
30    print_elements(a);
31
32    // negate elements using STL framework
33    transform(a.begin(),a.end(),    // source
34              a.begin(),            // destination
35              negate<int>());       // operation
36    print_elements(a);
37
38    return 0;  // makes Visual-C++ compiler happy
39}
40
Note: See TracBrowser for help on using the repository browser.