Earlier quoted context omitted.
Yeah, I am pretty certain you're not right in this understanding. I am not the most knowledgeable, but basically all I know is scientific computing, so here are my two cents: Any C-like language does not use the "vector" as its "primitive" (not clear what you mean by primitive, and I am instead interpreting it as "machine type"), since integers, floats, characters, are the "primitives" (machine types), which are the…
> does not use the "vector" as its "primitive" Well, doesn't the SIMD architecture make vectors "primitives", even if in some limited sense?
-------------------------------------
Some things I have not mentioned:
* vectorization: basically, how to do vector operations "smarter" on non-parallelized hardware[SIMD?], something that many languages (e.g. MATLAB, NumPy) and hardware now support
-------------------------------------