Non-const begin
| 152 | |
| 153 | auto begin() { return _statics.begin(); } // Non-const begin |
| 154 | auto end() { return _statics.end(); } // Non-const end |
| 155 | auto begin() const { return _statics.cbegin(); } // Const begin |
| 156 | auto end() const { return _statics.cend(); } // Const end |
| 157 | auto cbegin() const { return _statics.cbegin(); } // Explicit const begin |