Function untypeSlices

cast an array of typed slices to another array of blob of bytes an allocation is performed for the top container (the array of arrays) but the underlying data is moved without allocation

void[][] untypeSlices(T) (
  T[][] slices
)
if (!is(T == const));

const(void)[][] untypeSlices(T) (
  const(T)[][] slices
);