@POLPOX's request to extend select's syntax
[0,1,2] select [0]; // returns [] // wished [0,1,2] - same as 'string select [0]', "from the index, to the end" // e.g [0,1,2] select [1]; // returns [1,2]
additionally, an extension for negative numbers? e.g "abcd" select [-2, 1] // "c" or "abcd" select [1, -1] // "bc"
based on e.g PHP's substr (I am already out 🚪🏃♂️)