Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-29 | Add $find(<sequence>, <value>), $find_index(<sequence>, <value>) functions | Boris Kolpackov | 1 | -0/+56 | |
The $find() function returns true if the sequence contains the specified value. The $find_index() function returns the index of the first element in the sequence that is equal to the specified value or $size(<sequence>) if none is found. For string sequences, it's possible to request case- insensitive comparison with a flag. | |||||
2021-11-26 | Add $size(string), $size(path), and $size(dir_path) functions | Boris Kolpackov | 1 | -0/+6 | |
2021-11-04 | Add $size() function to get size of sequence (names, strings, etc) | Boris Kolpackov | 1 | -0/+6 | |
2021-11-02 | Add $sort() function | Boris Kolpackov | 1 | -0/+46 | |
Available overloads: $sort(<names> [, <flags>]) $sort(<ints> [, <flags>]) $sort(<strings> [, <flags>]) $sort(<paths> [, <flags>]) $sort(<dir_paths> [, <flags>]) The following flag is supported by the all overloads: dedup - in addition to sorting also remove duplicates Additionally, the strings overload also support the following flag: icase - sort ignoring case Note that on case-insensitive filesystem the paths and dir_paths overload's order is case-insensitive. | |||||
2020-12-04 | Mark Buildfile functions as pure or impure | Boris Kolpackov | 1 | -15/+15 | |
2020-11-23 | Add $string.lcase() and $string.ucase() functions | Karen Arutyunov | 1 | -0/+22 | |
2020-09-28 | Add $string.trim() function | Boris Kolpackov | 1 | -0/+12 | |
2020-02-07 | Drop copyright notice from source code | Karen Arutyunov | 1 | -1/+0 | |
2019-10-01 | Add support for $string.icasecmp() | Karen Arutyunov | 1 | -0/+23 | |
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 1 | -3/+3 | |
All non-const global state is now in class context and we can now have multiple independent builds going on at the same time. | |||||
2019-07-01 | Split build system into library and driver | Boris Kolpackov | 1 | -0/+43 | |