I think it's good to make less easy to shoot yourself in the foot with "unsafe" proc, however unsafe proc chaining is needlessly verbose.
By using Nim move {call} optimization, I'd like to introduce that only the first proc call copies, all the others in the chain are unsafe by default. Consequently if the first proc is unsafe, the whole chain is unsafe. That avoids unsafeSlice.unsafeReshape.unsafeContiguous verbosity hell.
Implementation started for asContiguous in 1cfe13c