| 5924 | } |
| 5925 | |
| 5926 | TOML_NODISCARD |
| 5927 | friend array_iterator operator-(const array_iterator& lhs, ptrdiff_t rhs) noexcept |
| 5928 | { |
| 5929 | return array_iterator{ lhs.iter_ - rhs }; |
| 5930 | } |
| 5931 | |
| 5932 | TOML_PURE_INLINE_GETTER |
| 5933 | friend ptrdiff_t operator-(const array_iterator& lhs, const array_iterator& rhs) noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected