Comment by rendaw
I assume your commentary is that this is bad, but I'd like to know why. I see this criticism thrown at lots of libraries.
All safe code in rust is built on unsafe code. The standard library is full of unsafe code. The purpose of `unsafe` is to encourage that dangerous things are safely wrapped. In business logic I'd question using unsafe code directly, but in a performance critical low level memory management library that's exactly where I'd expect to see it.
I gave no commentary. I don't even know what to say about that disclaimer. But I am not a Rust fan and I think "safety" should be achieved through making good programming easy.