Indexing of columns #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What I don't yet have in the new model is a mechanism for indexing into columns. I already discussed this in this Github issue comment. Coming back to that discussion, the thrust of it was that
[]
should support a second "argument" that indexes into a column and that this necessitates being able to pass some default first argument for selecting all columns. The obvious syntax for this would be an open-ended range, a la..
.To support open-ended ranges, I am going to need a range value type and to extend all of the numeric processing code to support these.
Range value types added as of
52d9b1540c
. I need to work on the ternary form of slicing next…