Skip to content

Commit 1e65245

Browse files
committed
lambda trivial example
1 parent 4cf4ce9 commit 1e65245

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

lambdas/lambda_trivial.cpp

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#include <iostream>
2+
#include <vector>
3+
#include <algorithm>
4+
5+
using std::cout;
6+
using std::cin;
7+
using std::endl;
8+
using std::vector;
9+
10+
/* a lambda function that returns the sum of a vector */
11+
auto sum = [](const auto& vec) -> auto {
12+
auto s = 0.0;
13+
for( auto& elem: vec) {
14+
s += elem;
15+
}
16+
return s;
17+
};
18+
19+
template<class T>
20+
class Matrix {
21+
public:
22+
Matrix(vector<T>& vect) { setvec(vect); }
23+
~Matrix() { vec.clear(); }
24+
25+
void setvec(vector<T>& source_vector) {
26+
typename vector<T>::iterator start = source_vector.begin();
27+
while(start != source_vector.end()) {
28+
vec.push_back(*start);
29+
start++;
30+
}
31+
}
32+
/* vector<T> */ auto Getvec() const {
33+
return vec;
34+
}
35+
private:
36+
vector<T> vec;
37+
};
38+
39+
40+
41+
int main()
42+
{
43+
vector<int> vec{1,2,3,4,5};
44+
Matrix<int> m(vec);
45+
46+
cout << "The sum of vec elements is : " << sum(m.Getvec()) << endl;
47+
48+
return 0;
49+
}

0 commit comments

Comments
 (0)