mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
window: add getters
This commit is contained in:
parent
9f7fd3776e
commit
4c427876d7
1 changed files with 6 additions and 1 deletions
|
@ -67,11 +67,16 @@ public:
|
|||
return out;
|
||||
}
|
||||
|
||||
size_type getPos() const
|
||||
size_type getSteps() const
|
||||
{
|
||||
return steps;
|
||||
}
|
||||
|
||||
size_type getPos() const
|
||||
{
|
||||
return pos;
|
||||
}
|
||||
|
||||
T operator[](int i) const
|
||||
{
|
||||
return data[(pos + i) & mask];
|
||||
|
|
Loading…
Add table
Reference in a new issue