| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Cleanup files, and add missing comments in places.
|
|
levelSplit/levelContains from the StringUtils class are now instead in
the new LevelSplitter class in ioutils. This is so that new features of
varying sorts can be added to those functions without cluttering up
StringUtils.
|
|
|
|
|
|
levelSplit/levelContains now respects both single and double quoted
strings
Added levelSplitRX that does level splitting based on a regex
|
|
This allows splitting/contain checking of strings, respecting grouping
delimiters.
Ex: The string "a|b|(a|b)" would be split into "a", "b", "(a|b)" instead
of "a", "b", "(a", "b)"
|
|
This adds some list/set utilities, including an implementation of 'plain
changes' for generating list permutations that I suspect needs some
debugging.
|
|
|
|
|
|
There are a couple of unimplemented directives, but the only ones I'd
consider anywhere near crucial would be the floating-point ones, which
I'm not sure what I should do with them.
|
|
|
|
|
|
|
|
|
|
|