Binary copies src to dest. src and dest can overlap.
This function is a preffered way over C's memcpy and memmove as it's CTFE-able and can work faster than C's ones as it knows data type.
See Implementation
Binary copies src to dest. src and dest can overlap.
This function is a preffered way over C's memcpy and memmove as it's CTFE-able and can work faster than C's ones as it knows data type.