Home
last modified time | relevance | path

Searched refs:permutation_type (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/iterator/test/
Dpermutation_iterator_test.cpp28 typedef boost::permutation_iterator< double*, int const* > permutation_type; in iterop_test() typedef
33 permutation_type in iterop_test()
57 …boost::permutation_iterator< element_range_type::iterator, index_type::iterator > permutation_type; in permutation_test() typedef
58 permutation_type begin = boost::make_permutation_iterator( elements.begin(), indices.begin() ); in permutation_test()
59 permutation_type it = begin; in permutation_test()
60 permutation_type end = boost::make_permutation_iterator( elements.begin(), indices.end() ); in permutation_test()
/third_party/boost/libs/iterator/example/
Dpermutation_iter_example.cpp34 …ypedef permutation_iterator< element_range_type::iterator, index_type::iterator > permutation_type; in main() typedef
35 permutation_type begin = make_permutation_iterator( elements.begin(), indices.begin() ); in main()
36 permutation_type it = begin; in main()
37 permutation_type end = make_permutation_iterator( elements.begin(), indices.end() ); in main()
/third_party/boost/libs/iterator/doc/
Dpermutation_iterator_eg.rst25 …ypedef permutation_iterator< element_range_type::iterator, index_type::iterator > permutation_type;
26 permutation_type begin = make_permutation_iterator( elements.begin(), indices.begin() );
27 permutation_type it = begin;
28 permutation_type end = make_permutation_iterator( elements.begin(), indices.end() );
/third_party/boost/libs/iterator/doc/quickbook/
Dpermutation_iterator.qbk41 …ypedef permutation_iterator< element_range_type::iterator, index_type::iterator > permutation_type;
42 permutation_type begin = make_permutation_iterator( elements.begin(), indices.begin() );
43 permutation_type it = begin;
44 permutation_type end = make_permutation_iterator( elements.begin(), indices.end() );
/third_party/boost/libs/numeric/ublas/test/tensor/
Dtest_algorithms.cpp225 using permutation_type = std::vector<size_type>; in BOOST_FIXTURE_TEST_CASE_TEMPLATE() typedef
233 auto pi = permutation_type(p); in BOOST_FIXTURE_TEST_CASE_TEMPLATE()