How does Julia store array sizes?

First of all, welcome to our community! :confetti_ball:

I think Julia arrays are implemented in C, not Julia, so they are not structs. As how they implement size, this is an implementation detail, you probably should look at the sources: size calls arraysize that seems to be a C function.

2 Likes