| 25 | namespace arrow { |
| 26 | |
| 27 | struct TestInt { |
| 28 | TestInt(); |
| 29 | TestInt(int i); // NOLINT runtime/explicit |
| 30 | int value; |
| 31 | |
| 32 | bool operator==(const TestInt& other) const; |
| 33 | |
| 34 | friend std::ostream& operator<<(std::ostream& os, const TestInt& v); |
| 35 | }; |
| 36 | |
| 37 | template <> |
| 38 | struct IterationTraits<TestInt> { |