Copies source into target.
source and target shall not overlap so that source points ahead of target.
target shall have enough space for source.length elements.
Memory to copy from.
Destination memory.
t { ubyte[9] source = [1, 2, 3, 4, 5, 6, 7, 8, 9]; ubyte[9] target; source.copy(target); assert(equal(source, target)
$(D_PSYMBOL copyBackward).
Precondition: source.length <= target.length.
See Implementation
Copies source into target.
source and target shall not overlap so that source points ahead of target.
target shall have enough space for source.length elements.