arrayA[0 .. dataLen] = arrayB[0 .. dataLen];
Does the compiler generate code that uses SIMD operations (128-bits memory copy) automatically, or do I need to do anything special for this?
tcak via Digitalmars-d-learn Fri, 06 Feb 2015 22:36:12 -0800
arrayA[0 .. dataLen] = arrayB[0 .. dataLen];
Does the compiler generate code that uses SIMD operations (128-bits memory copy) automatically, or do I need to do anything special for this?