| 90 | static const Ref *begin() { return &begin_; } |
| 91 | static const Ref *end() { return &end_; } |
| 92 | static std::size_t size() { return end() - begin(); } |
| 93 | const Ref &operator[](std::size_t i) const { return begin()[i]; } |
| 94 | }; |
| 95 | #ifdef _GLIBCXX_SIMD_CLANG |
nothing calls this directly
no outgoing calls
no test coverage detected