| 6990 | } |
| 6991 | |
| 6992 | ~mmap_array() noexcept { |
| 6993 | ::munlock(data_, size_ * sizeof(type_)); |
| 6994 | ::munmap(data_, size_ * sizeof(type_)); |
| 6995 | } |
| 6996 | |
| 6997 | type_ *begin() const noexcept { return data_; } |
| 6998 | type_ *end() const noexcept { return data_ + size_; } |
nothing calls this directly
no outgoing calls
no test coverage detected