| 110 | } |
| 111 | |
| 112 | bool Array::empty() const noexcept { |
| 113 | if (_usuallyFalse(isMutable())) |
| 114 | return heapArray()->empty(); |
| 115 | return countIsZero(); |
| 116 | } |
| 117 | |
| 118 | const Value* Array::get(uint32_t index) const noexcept { |
| 119 | if (_usuallyFalse(isMutable())) |
nothing calls this directly
no outgoing calls
no test coverage detected