So a bunch of coworkers and I are messing around with MaybeUninit. It’s proving surprisingly difficult to make an unsafe “raw” version of this function (initialize an array by copy) that’s as fast as
output.zip(input).for_each( *out = *in);
#ZeroCostAbstractions