Пример #1
0
        public static Span128 <T> Store <T>(Vec128 <T> src, Span128 <T> dst, int blockIndex)
            where T : struct
        {
            var offset = Span128.BlockLength <T>(blockIndex);

            Vec128.Store(src, ref dst[offset]);
            return(dst);
        }