Expand description
Parser and resolver for the --indices flag.
Grammar:
indices := expr ("," expr)*
expr := int | range
range := int? ":" int?
int := "-"? [0-9]+Resolution against a dataset with rowcount rows:
- Negative
imeansrowcount + i(errors if still < 0). a:bis inclusive on both ends.a:meansa..=rowcount-1.:bmeans0..=b.:means the entire dataset.- Order is preserved and duplicates are not removed.
Functionsยง
- resolve
- Parse
--indicesand expand against the dataset row count.