Skip to content
Snippets Groups Projects
Commit 772f479d authored by Jan Trávníček's avatar Jan Trávníček
Browse files

add foreach pair

parent a01ac68a
No related branches found
No related tags found
No related merge requests found
/*
* foreach.hpp
*
* Created on: Apr 1, 2013
* Author: Jan Travnicek
*/
#ifndef __FOREACH_HPP_
#define __FOREACH_HPP_
namespace std {
template <class Iterator1, class Iterator2>
class const_pair_foreach_iterator {
Iterator1 current1;
Iterator2 current2;
public:
typedef Iterator1 iterator_type1;
typedef typename iterator_traits<Iterator1>::iterator_category iterator_category1;
typedef typename iterator_traits<Iterator1>::value_type value_type1;
typedef Iterator1 pointer1;
typedef const value_type1& reference1;
typedef Iterator2 iterator_type2;
typedef typename iterator_traits<Iterator2>::iterator_category iterator_category2;
typedef typename iterator_traits<Iterator2>::value_type value_type2;
typedef Iterator2 pointer2;
typedef const value_type2& reference2;
explicit const_pair_foreach_iterator() {
}
explicit const_pair_foreach_iterator (Iterator1 it1, Iterator2 it2) : current1(it1), current2(it2) {
}
const_pair_foreach_iterator (const const_pair_foreach_iterator<Iterator1, Iterator2>& it) : current1(it.current1), current2(it.current2) {
}
const_pair_foreach_iterator& operator= (const const_pair_foreach_iterator<Iterator1, Iterator2>& it) {
current1 = it.current1;
current2 = it.current2;
}
iterator_type1 base1() const {
return current1;
}
iterator_type2 base2() const {
return current2;
}
std::tuple<reference1, reference2> operator*() const {
return std::tie(*current1, *current2);
}
const_pair_foreach_iterator& operator++() {
++current1;
++current2;
return *this;
}
const_pair_foreach_iterator& operator--() {
--current1;
--current2;
return *this;
}
const_pair_foreach_iterator& operator++(int) {
const_pair_foreach_iterator temp = *this;
++current1;
++current2;
return temp;
}
const_pair_foreach_iterator& operator--(int) {
const_pair_foreach_iterator temp = *this;
--current1;
--current2;
return temp;
}
bool operator== (const const_pair_foreach_iterator<Iterator1, Iterator2>& other) {
return this->current1 == other.current1 && this->current2 == other.current2;
}
bool operator!= (const const_pair_foreach_iterator<Iterator1, Iterator2>& other) {
return ! ( *this == other );
}
};
template<class Iterator1, class Iterator2>
const_pair_foreach_iterator<Iterator1, Iterator2> make_pair_foreach_iterator (Iterator1 it1, Iterator2 it2) {
return const_pair_foreach_iterator<Iterator1, Iterator2>(it1, it2);
}
template<class T, class R>
class const_pair_foreach {
const T& first;
const R& second;
public:
const_pair_foreach(const T& first, const R& second) : first(first), second(second) {}
const_pair_foreach_iterator<typename T::const_iterator, typename R::const_iterator> begin() const {
return make_pair_foreach_iterator(first.begin(), second.begin());
}
const_pair_foreach_iterator<typename T::const_iterator, typename R::const_iterator> end() const {
return make_pair_foreach_iterator(first.end(), second.end());
}
};
template<class T, class R>
const_pair_foreach<T, R> make_pair_foreach(const T& first, const R& second) {
return const_pair_foreach<T, R>(first, second);
}
} /* namespace std */
#endif /* __FOREACH_HPP_ */
#ifndef __FOREACH_HEADER_WRAPPER_
#define __FOREACH_HEADER_WRAPPER_
#include "tuple"
#include "extensions/foreach.hpp"
#endif /* __FOREACH_HEADER_WRAPPER_ */
#include "ForeachTest.h"
#include <list>
#include <vector>
#include <foreach>
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ForeachTest, "bits" );
CPPUNIT_TEST_SUITE_REGISTRATION( ForeachTest );
void ForeachTest::setUp() {
}
void ForeachTest::tearDown() {
}
void ForeachTest::testForeach() {
std::vector<int> vector1 {1, 2, 3};
std::list<int> vector2 {2, 3, 4};
int i = 1;
for(const std::tuple<const int&, const int&>& elements : std::make_pair_foreach(vector1, vector2)) {
CPPUNIT_ASSERT(std::get<0>(elements) == i);
CPPUNIT_ASSERT(std::get<1>(elements) == i + 1);
i++;
}
}
#ifndef COMPARE_TEST_H_
#define COMPARE_TEST_H_
#include <cppunit/extensions/HelperMacros.h>
class ForeachTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( ForeachTest );
CPPUNIT_TEST( testForeach );
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void testForeach();
};
#endif // COMPARE_TEST_H_
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment