aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2015-03-07Changed `tav::Apply` implementation selection to template aliasAdrian Kummerlaender
2015-02-27Renamed `Any` list query to `Every`Adrian Kummerlaender
2015-02-26Enabled `Concatenate` to concatenate a variadic pack of listsAdrian Kummerlaender
2015-02-25Added `Cond` branch condition assertionAdrian Kummerlaender
2015-02-24Replaced `utility::defer_eval` with placeholder-less `Apply`Adrian Kummerlaender
2015-02-22Improved `simulate` function of the Turing machine exampleAdrian Kummerlaender
2015-02-21Separated Turing machine implementation into componentsAdrian Kummerlaender
2015-02-20Added `ReplaceNth` list operationAdrian Kummerlaender
2015-02-19Moved `Apply`'s placeholder into separate detail headerAdrian Kummerlaender
2015-02-19Introduced `Branch` and `Else` pair aliases for usage in `Cond`Adrian Kummerlaender
2015-02-19Added missing `Cond` dependency headersAdrian Kummerlaender
2015-02-19Reimplemented `Find` in terms of `ListIndex`Adrian Kummerlaender
2015-02-18Changed `ListIndex` to return false if no index is foundAdrian Kummerlaender
2015-02-18Reimplemented `Append` in terms of `Fold`Adrian Kummerlaender
2015-02-17Reimplemented `TakeWhile` and `DropWhile` in terms of `ListIndex`Adrian Kummerlaender
2015-02-17Expressed `Take` and `Drop` in terms of new `Section` operationAdrian Kummerlaender
2015-02-16Unified `Iota` and `MakeList` using nested structure generatorAdrian Kummerlaender
2015-02-16Renamed `detail::Sort` to `detail::quick_sort`Adrian Kummerlaender
2015-02-16Reimplemented `Nth` in terms of `Drop`Adrian Kummerlaender
2015-02-16Simplified `List`, `Length` and `Reverse` implementationsAdrian Kummerlaender
2015-02-15Simplified `Cond`, `Cons` and `Map` implementationsAdrian Kummerlaender
2015-02-15Reduced `Filter` and `Remove` implementations to direct aliasesAdrian Kummerlaender
2015-02-15Moved class-based implementations into `detail` namespaceAdrian Kummerlaender
2015-02-14Introduced `Eval` function evaluation helperAdrian Kummerlaender
2015-02-13Renamed `Apply`'s template alias to `function`Adrian Kummerlaender
2015-02-12Added previously missing `Drop` implementationAdrian Kummerlaender
2015-02-12Implemented `Cond` conditionalAdrian Kummerlaender
2015-02-12Added `Is` prefix to `EqualValue` and `EqualType`Adrian Kummerlaender
2015-02-12Revamped partial function applicationAdrian Kummerlaender
2015-02-10Moved `Sort` list index deletion into `DeleteNth` functionAdrian Kummerlaender
2015-02-09Updated `Sort` to make use of `Partition` for splitting at pivotAdrian Kummerlaender
2015-02-09Added `First`, `Second` and `Third` aliae for `Nth`Adrian Kummerlaender
2015-02-09Added `void` concatenation `List` template specializationAdrian Kummerlaender
2015-02-08Implemented higher order `Sort` list operationAdrian Kummerlaender
2015-02-08Added `GreaterThan` and `LowerThan` comparatorsAdrian Kummerlaender
2015-02-06Moved _SFINAE_ helper into separate headerAdrian Kummerlaender
2015-02-06Revamped to use `Cons` as a function and `Pair` as its resultAdrian Kummerlaender
2015-02-05Defer `If` template resolution analogously to other functionsAdrian Kummerlaender
2015-02-05Reimplemented `Contains` and `Delete` in terms of `Apply`Adrian Kummerlaender
2015-02-04Implemented the Sieve of Eratosthenes as a basic exampleAdrian Kummerlaender
2015-02-03Added special `for_each` function for iterating lists at runtimeAdrian Kummerlaender
2015-02-02Implemented `Delete` in terms of `Remove`Adrian Kummerlaender
2015-02-01Added `DropWhile` analogously to `TakeWhile`Adrian Kummerlaender
2015-02-01Added `TakeWhile` higher order list operationAdrian Kummerlaender
2015-01-31Implemented higher order `Find` list search operationAdrian Kummerlaender
2015-01-30Implemented `Remove` and `Partition` higher order list functionsAdrian Kummerlaender
2015-01-30Separated `Map` and `Filter`Adrian Kummerlaender
2015-01-29Added `ListOfType` list constructor aliasAdrian Kummerlaender
2015-01-26Redefined `Length` in terms of `Apply` and `Fold`Adrian Kummerlaender
2015-01-26Added pair and triple aliae for the variadic `Apply` typeAdrian Kummerlaender