| 82 | } |
| 83 | |
| 84 | const Value* Array::impl::firstValue() const noexcept { |
| 85 | if (_usuallyFalse(_count == 0)) |
| 86 | return nullptr; |
| 87 | return deref(_first); |
| 88 | } |
| 89 | |
| 90 | size_t Array::impl::indexOf(const Value *v) const noexcept { |
| 91 | return ((size_t)v - (size_t)_first) / _width; |
nothing calls this directly
no outgoing calls
no test coverage detected