-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstColumnIterator.h
More file actions
74 lines (57 loc) · 2.32 KB
/
ConstColumnIterator.h
File metadata and controls
74 lines (57 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//
// Created by mfbut on 11/17/2019.
//
#ifndef ECS_36B_HOMEWORK_CONSTCOLUMNITERATOR_H
#define ECS_36B_HOMEWORK_CONSTCOLUMNITERATOR_H
#include <iterator>
#include "ConstVectorRef.h"
namespace Matrix {
class Matrix;
class ConstColumnIterator {
public:
//the iterator type tags
using iterator_category = std::random_access_iterator_tag;
using value_type = ConstVectorRef;
using difference_type = int;
using pointer = const value_type*;
using reference = const value_type&;
//Create an column iterator over the specified Matrix starting at the specified column
ConstColumnIterator(const Matrix* matrix, int col);
ConstColumnIterator(const ConstColumnIterator& orig) = default;
virtual ~ConstColumnIterator() = default;
//return a reference to the column you are at
value_type operator* () const;
//return a reference to the column offset columns from your current position
value_type operator[](int offset) const;
//move to the next column
ConstColumnIterator& operator++(); //pre
const ConstColumnIterator operator++(int); //post
//move backward amount columns
ConstColumnIterator& operator--(); //pre
const ConstColumnIterator operator--(int); //post
//move forward amount columns
ConstColumnIterator& operator+=(int amount);
ConstColumnIterator operator+(int amount) const;
//move backward amount columns
ConstColumnIterator& operator-=(int amount);
ConstColumnIterator operator-(int amount) const;
//return the number of columns between yourself and rhs
//for example if you were at column 10 and rhs was at column 7
//the difference would be 3
difference_type operator-(const ConstColumnIterator& rhs);
//you and rhs are equal if you are over the same matrix and
//at the same column
bool operator==(const ConstColumnIterator& rhs) const;
bool operator!=(const ConstColumnIterator& rhs) const;
//are you at a column before rhs?
bool operator<(const ConstColumnIterator& rhs) const;
bool operator<=(const ConstColumnIterator& rhs) const;
//are you at a column after rhs?
bool operator>(const ConstColumnIterator& rhs) const;
bool operator>=(const ConstColumnIterator& rhs) const;
protected:
const Matrix* matrix;
int col;
};
}
#endif //ECS_36B_HOMEWORK_CONSTCOLUMNITERATOR_H