1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

window: refactor steps -> length

This commit is contained in:
Steffen Vogel 2019-04-17 18:08:08 +02:00
parent 6e304c41e9
commit 0fd50ff79c

View file

@ -66,16 +66,11 @@ public:
return out;
}
size_type getSteps() const
size_type getLength() const
{
return steps;
}
size_type getPos() const
{
return pos;
}
T operator[](int i) const
{
return data[(pos + i) & mask];