Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
45b9a4e8dfe6225826c8fb67c4bb184c4a41f510
Switch branch/tag
embb
doc
examples
algorithms
reduce
sequential-snippet.h
Find file
Normal view
History
Permalink
sequential-snippet.h
78 Bytes
Edit
Newer
Older
Initial version of open source release.
faca57bb
Tobias Schuele
committed
10 years ago
1
2
3
4
int
sum
=
0
;
for
(
size_t
i
=
0
;
i
<
range
.
size
();
i
++
)
{
sum
+=
range
[
i
];
}