|
|
|
|
|
by btilly
1392 days ago
|
|
The problem is that libraries which assume 0-base break when you have a 1-based array. And vice versa. Trying to combine libraries with different conventions becomes impossible. Therefore changing the base leads to more bugs than either base alone. That said, the more you can just use a foreach to not worry about the index at all, the better. Of 0-based and 1-based, the only data point I have is a side comment of Dijkstra's that the language Mesa allowed both, and found that 0-based arrays lead to the fewest bugs in practice. I'd love better data on that, but this is a good reason to prefer 0-based. That said, I can work with either. But Python uses 0-based and plpgsql uses 1-based. Switching back and forth gets..annoying. |
|