|
|
|
|
|
by amalcon
1390 days ago
|
|
No, offset means "measuring from a defined location". In a computer, the choice of location is more or less arbitrary[0]. If you pick the first element, you get zero indexing. If you pick a space before the first element, you get one indexing. Either one is a pointer, since a pointer is just computer jargon for "a defined location". Calling that defined location "origin" doesn't suddenly make it not a pointer. [0]- NUMA and cache effects aside, as they don't matter for this purpose |
|