| 88 | using Ref = testdatatype_for_function_t<F, T>; |
| 89 | static const Ref begin_, end_; |
| 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]; } |
nothing calls this directly
no outgoing calls
no test coverage detected