Age | Commit message (Expand) | Author |
2015-02-21 | Implemented basic Turing machine as an example | Adrian Kummerlaender |
2015-02-20 | Added `ReplaceNth` list operation | Adrian Kummerlaender |
2015-02-19 | Moved `Apply`'s placeholder into separate detail header | Adrian Kummerlaender |
2015-02-19 | Introduced `Branch` and `Else` pair aliases for usage in `Cond` | Adrian Kummerlaender |
2015-02-19 | Added missing `Cond` dependency headers | Adrian Kummerlaender |
2015-02-19 | Reimplemented `Find` in terms of `ListIndex` | Adrian Kummerlaender |
2015-02-18 | Changed `ListIndex` to return false if no index is found | Adrian Kummerlaender |
2015-02-18 | Reimplemented `Append` in terms of `Fold` | Adrian Kummerlaender |
2015-02-17 | Reimplemented `TakeWhile` and `DropWhile` in terms of `ListIndex` | Adrian Kummerlaender |
2015-02-17 | Added `Section` test case | Adrian Kummerlaender |
2015-02-17 | Expressed `Take` and `Drop` in terms of new `Section` operation | Adrian Kummerlaender |
2015-02-16 | Unified `Iota` and `MakeList` using nested structure generator | Adrian Kummerlaender |
2015-02-16 | Renamed `detail::Sort` to `detail::quick_sort` | Adrian Kummerlaender |
2015-02-16 | Reimplemented `Nth` in terms of `Drop` | Adrian Kummerlaender |
2015-02-16 | Simplified `List`, `Length` and `Reverse` implementations | Adrian Kummerlaender |
2015-02-15 | Simplified `Cond`, `Cons` and `Map` implementations | Adrian Kummerlaender |
2015-02-15 | Reduced `Filter` and `Remove` implementations to direct aliases | Adrian Kummerlaender |
2015-02-15 | Moved class-based implementations into `detail` namespace | Adrian Kummerlaender |
2015-02-14 | Introduced `Eval` function evaluation helper | Adrian Kummerlaender |
2015-02-13 | Renamed `Apply`'s template alias to `function` | Adrian Kummerlaender |
2015-02-12 | Added previously missing `Drop` implementation | Adrian Kummerlaender |
2015-02-12 | Implemented `Cond` conditional | Adrian Kummerlaender |
2015-02-12 | Added `Is` prefix to `EqualValue` and `EqualType` | Adrian Kummerlaender |
2015-02-12 | Revamped partial function application | Adrian Kummerlaender |
2015-02-10 | Moved `Sort` list index deletion into `DeleteNth` function | Adrian Kummerlaender |
2015-02-09 | Updated `README.md` to mention recent features and direction | Adrian Kummerlaender |
2015-02-09 | Updated `Sort` to make use of `Partition` for splitting at pivot | Adrian Kummerlaender |
2015-02-09 | Added `First`, `Second` and `Third` aliae for `Nth` | Adrian Kummerlaender |
2015-02-09 | Added `void` concatenation `List` template specialization | Adrian Kummerlaender |
2015-02-08 | Implemented higher order `Sort` list operation | Adrian Kummerlaender |
2015-02-08 | Added `GreaterThan` and `LowerThan` comparators | Adrian Kummerlaender |
2015-02-08 | Added _Scheme_ variant of prime example as documentation | Adrian Kummerlaender |
2015-02-06 | Moved _SFINAE_ helper into separate header | Adrian Kummerlaender |
2015-02-06 | Revamped to use `Cons` as a function and `Pair` as its result | Adrian Kummerlaender |
2015-02-05 | Defer `If` template resolution analogously to other functions | Adrian Kummerlaender |
2015-02-05 | Reimplemented `Contains` and `Delete` in terms of `Apply` | Adrian Kummerlaender |
2015-02-05 | Reimplemented `removeMultiplesOf` in terms of a partial function application | Adrian Kummerlaender |
2015-02-04 | Implemented the Sieve of Eratosthenes as a basic example | Adrian Kummerlaender |
2015-02-03 | Added special `for_each` function for iterating lists at runtime | Adrian Kummerlaender |
2015-02-02 | Implemented `Delete` in terms of `Remove` | Adrian Kummerlaender |
2015-02-01 | Restored synchronisation between assert messages and their types | Adrian Kummerlaender |
2015-02-01 | Added `DropWhile` analogously to `TakeWhile` | Adrian Kummerlaender |
2015-02-01 | Added some of the new features to the README file | Adrian Kummerlaender |
2015-02-01 | Added `TakeWhile` higher order list operation | Adrian Kummerlaender |
2015-01-31 | Implemented higher order `Find` list search operation | Adrian Kummerlaender |
2015-01-30 | Implemented `Remove` and `Partition` higher order list functions | Adrian Kummerlaender |
2015-01-30 | Separated `Map` and `Filter` | Adrian Kummerlaender |
2015-01-29 | Added `ListOfType` list constructor alias | Adrian Kummerlaender |
2015-01-26 | Redefined `Length` in terms of `Apply` and `Fold` | Adrian Kummerlaender |
2015-01-26 | Added pair and triple aliae for the variadic `Apply` type | Adrian Kummerlaender |