<feed xmlns='http://www.w3.org/2005/Atom'>
<title>TypeAsValue/src/list, branch master</title>
<subtitle>C++ compile time computation library using types as values and templates as functions</subtitle>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/'/>
<entry>
<title>Renamed `Any` list query to `Every`</title>
<updated>2015-02-27T20:30:15+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-27T20:30:15+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=741e4550312a9bf618602c1708745e0ceaf455ec'/>
<id>741e4550312a9bf618602c1708745e0ceaf455ec</id>
<content type='text'>
* _TypeAsValue_ borrows large parts of its inspirations from _Scheme_
** i.e. there is no reason for stopping at this point
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* _TypeAsValue_ borrows large parts of its inspirations from _Scheme_
** i.e. there is no reason for stopping at this point
</pre>
</div>
</content>
</entry>
<entry>
<title>Enabled `Concatenate` to concatenate a variadic pack of lists</title>
<updated>2015-02-26T18:06:34+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-26T18:06:34+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=34530d8532e22afe0026b956ae395ddc666351b3'/>
<id>34530d8532e22afe0026b956ae395ddc666351b3</id>
<content type='text'>
* analogously to arbitrary list count concatenation in Scheme's `append`
** implemented for `Concatenate` instead as it fits better with the structure between `Append` and `Concatenate`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* analogously to arbitrary list count concatenation in Scheme's `append`
** implemented for `Concatenate` instead as it fits better with the structure between `Append` and `Concatenate`
</pre>
</div>
</content>
</entry>
<entry>
<title>Improved `simulate` function of the Turing machine example</title>
<updated>2015-02-22T16:14:15+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-22T16:14:15+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=41b63eff7f76e6574ef238f821dad0212a619c2a'/>
<id>41b63eff7f76e6574ef238f821dad0212a619c2a</id>
<content type='text'>
* introduced `state::state_accessor` helper function and moved position logic into `updatePosition`
* added `IsEqual` comparator and expressed other basic comparators in terms of itself
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* introduced `state::state_accessor` helper function and moved position logic into `updatePosition`
* added `IsEqual` comparator and expressed other basic comparators in terms of itself
</pre>
</div>
</content>
</entry>
<entry>
<title>Separated Turing machine implementation into components</title>
<updated>2015-02-21T16:27:52+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-21T16:27:52+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=c15edae4532f53e7e5bac9dae125c360d93f848d'/>
<id>c15edae4532f53e7e5bac9dae125c360d93f848d</id>
<content type='text'>
* i.e. separate namespaces and headers for _Tape_ and _State_ functions
* `void` is now used as the `BLANK` field value
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* i.e. separate namespaces and headers for _Tape_ and _State_ functions
* `void` is now used as the `BLANK` field value
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `ReplaceNth` list operation</title>
<updated>2015-02-20T21:03:19+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-20T21:03:19+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=de1f1dc67a1dabcddac2e89a5d703e98a92b7f11'/>
<id>de1f1dc67a1dabcddac2e89a5d703e98a92b7f11</id>
<content type='text'>
* as its name implies this function replaces the _nth_ element of a given list
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this function replaces the _nth_ element of a given list
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Reimplemented `Find` in terms of `ListIndex`</title>
<updated>2015-02-19T12:45:07+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-19T12:45:07+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=a8bec66b05eece7b8a39102fb1b0ba8f778eb9fe'/>
<id>a8bec66b05eece7b8a39102fb1b0ba8f778eb9fe</id>
<content type='text'>
* `ListIndex` already implements the necessary partial template specializations for finding elements matching a predicate
* reimplemented `Cond` using `detail::find_variadic` as `Find` depends on `Apply` which in turn depends on `Cond`
** it is useful if core functionality such as the branched conditional `Cond` do not require higher order functionality such as `Find`
*** otherwise one can not use core functionality in the implementation of higher order functionality
* introduced `utility::predicate_guard` helper template
** checks a given value using a predicate and only forwards the value to the guarded function if this check is successful
** if check is unsuccessful it returns a surrogate value simmilar to `utility::predicate_assurance`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `ListIndex` already implements the necessary partial template specializations for finding elements matching a predicate
* reimplemented `Cond` using `detail::find_variadic` as `Find` depends on `Apply` which in turn depends on `Cond`
** it is useful if core functionality such as the branched conditional `Cond` do not require higher order functionality such as `Find`
*** otherwise one can not use core functionality in the implementation of higher order functionality
* introduced `utility::predicate_guard` helper template
** checks a given value using a predicate and only forwards the value to the guarded function if this check is successful
** if check is unsuccessful it returns a surrogate value simmilar to `utility::predicate_assurance`
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed `ListIndex` to return false if no index is found</title>
<updated>2015-02-18T21:37:39+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-18T21:37:39+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=9bb66d9c1d8a7bf5bf02f5a7c400894e928d2a95'/>
<id>9bb66d9c1d8a7bf5bf02f5a7c400894e928d2a95</id>
<content type='text'>
* analogously to `list-index` and `find` in SRFI-1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* analogously to `list-index` and `find` in SRFI-1
</pre>
</div>
</content>
</entry>
<entry>
<title>Reimplemented `Append` in terms of `Fold`</title>
<updated>2015-02-18T19:23:35+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-18T19:23:35+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=a3cfc224111c324324e29a9a7a61b511053ec14c'/>
<id>a3cfc224111c324324e29a9a7a61b511053ec14c</id>
<content type='text'>
* `Fold` already implements the necessary partial specializations for traversing list structures
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `Fold` already implements the necessary partial specializations for traversing list structures
</pre>
</div>
</content>
</entry>
<entry>
<title>Reimplemented `TakeWhile` and `DropWhile` in terms of `ListIndex`</title>
<updated>2015-02-17T21:47:56+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-17T21:47:56+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=af5662781840ac45c21cbf14cbc7973bcf39d1da'/>
<id>af5662781840ac45c21cbf14cbc7973bcf39d1da</id>
<content type='text'>
* new higher order list operation `ListIndex` returns the index of the first list element satisfying a given predicate function
** this enables finding the split index required for both `TakeWhile` and `DropWhile`
** actual list manipulation is then performed using lower order `Take` or `Drop`
** analogously to `list-index` in SRFI-1
** added appropriate test case
* added higher order predicate utility function `utility::predicate_assurance`
** as its name implies this function enables assuring that a value satisfies a given predicate
*** if this is not the case a surrogate value is returned instead
** this is used to return a appropriate size value if the `ListIndex` call fails because no element satisfies its predicate
** `detail::predicate_negator` was moved from `Remove`'s implementation details into the newly introduced `utility` namespace
*** as it is required by both `TakeWhile` and `DropWhile` in addition to `Remove`
* continuation of 8e49cc6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* new higher order list operation `ListIndex` returns the index of the first list element satisfying a given predicate function
** this enables finding the split index required for both `TakeWhile` and `DropWhile`
** actual list manipulation is then performed using lower order `Take` or `Drop`
** analogously to `list-index` in SRFI-1
** added appropriate test case
* added higher order predicate utility function `utility::predicate_assurance`
** as its name implies this function enables assuring that a value satisfies a given predicate
*** if this is not the case a surrogate value is returned instead
** this is used to return a appropriate size value if the `ListIndex` call fails because no element satisfies its predicate
** `detail::predicate_negator` was moved from `Remove`'s implementation details into the newly introduced `utility` namespace
*** as it is required by both `TakeWhile` and `DropWhile` in addition to `Remove`
* continuation of 8e49cc6
</pre>
</div>
</content>
</entry>
<entry>
<title>Expressed `Take` and `Drop` in terms of new `Section` operation</title>
<updated>2015-02-17T17:55:08+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-17T17:55:08+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=8e4e3466694e5bef43f1308296a76086a7db453d'/>
<id>8e4e3466694e5bef43f1308296a76086a7db453d</id>
<content type='text'>
* unifies the common functionality between `Take` and `Drop`
* renamed `basic.h` to `length.h` as it only contains the `Length` implementation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* unifies the common functionality between `Take` and `Drop`
* renamed `basic.h` to `length.h` as it only contains the `Length` implementation
</pre>
</div>
</content>
</entry>
<entry>
<title>Unified `Iota` and `MakeList` using nested structure generator</title>
<updated>2015-02-16T16:35:38+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-16T16:35:38+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=f81cd736e00c28cf24412a4099bae08ff2e6c493'/>
<id>f81cd736e00c28cf24412a4099bae08ff2e6c493</id>
<content type='text'>
* `detail::generate_nested_structure` offers a higher order nested structure constructor for procedural list generation
* renamed `Fold` implementation details
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `detail::generate_nested_structure` offers a higher order nested structure constructor for procedural list generation
* renamed `Fold` implementation details
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed `detail::Sort` to `detail::quick_sort`</title>
<updated>2015-02-16T15:35:38+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-16T15:35:38+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=5a9366307d23b220657629c494827def3544c490'/>
<id>5a9366307d23b220657629c494827def3544c490</id>
<content type='text'>
* opens up the possibility of implementing different sort algorithms in this library
* removed now unnecessary namespace prefixes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* opens up the possibility of implementing different sort algorithms in this library
* removed now unnecessary namespace prefixes
</pre>
</div>
</content>
</entry>
<entry>
<title>Reimplemented `Nth` in terms of `Drop`</title>
<updated>2015-02-16T15:29:50+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-16T15:29:50+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=45c63c95293e42860ee17368ab24cc65cc60d378'/>
<id>45c63c95293e42860ee17368ab24cc65cc60d378</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplified `List`, `Length` and `Reverse` implementations</title>
<updated>2015-02-16T13:03:53+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-16T13:03:53+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=324988569183e38e9c5e42318571693a6fcd9569'/>
<id>324988569183e38e9c5e42318571693a6fcd9569</id>
<content type='text'>
* continuation of 8e49cc6
* list constructor was generalized to a _variadic fold_
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* continuation of 8e49cc6
* list constructor was generalized to a _variadic fold_
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplified `Cond`, `Cons` and `Map` implementations</title>
<updated>2015-02-15T21:37:06+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-15T21:37:06+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=a59df7e8c4fd1f88bc1078ebcfde944502b0c309'/>
<id>a59df7e8c4fd1f88bc1078ebcfde944502b0c309</id>
<content type='text'>
* continuation of 8e49cc6f8f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* continuation of 8e49cc6f8f
</pre>
</div>
</content>
</entry>
<entry>
<title>Reduced `Filter` and `Remove` implementations to direct aliases</title>
<updated>2015-02-15T19:31:07+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-15T19:31:07+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=8e49cc6f8f2186ef028bfa765fd06e52ce5218c5'/>
<id>8e49cc6f8f2186ef028bfa765fd06e52ce5218c5</id>
<content type='text'>
* i.e. instead of defining full class templates in the `detail` namespace we only define predicate helpers
* I don't like how some symbols have to be prefixed with `tav::` in the `detail` namespace to prevent conflicts - this is one reason why as much implementation as possible should be moved to template aliases
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* i.e. instead of defining full class templates in the `detail` namespace we only define predicate helpers
* I don't like how some symbols have to be prefixed with `tav::` in the `detail` namespace to prevent conflicts - this is one reason why as much implementation as possible should be moved to template aliases
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved class-based implementations into `detail` namespace</title>
<updated>2015-02-15T13:07:50+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-15T13:07:50+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=46e174935b122c0da4b51532a7f683a512eeaf65'/>
<id>46e174935b122c0da4b51532a7f683a512eeaf65</id>
<content type='text'>
* while class templates enable e.g. hiding implementation details they also require evaluation via `Eval`
** this clutters up the actual logic and is now hidden behind aliae that perform the evaluation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* while class templates enable e.g. hiding implementation details they also require evaluation via `Eval`
** this clutters up the actual logic and is now hidden behind aliae that perform the evaluation
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduced `Eval` function evaluation helper</title>
<updated>2015-02-14T09:43:49+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-14T09:43:49+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=e24f25ada7e8f48dc35cb235e045a4324bccb4f2'/>
<id>e24f25ada7e8f48dc35cb235e045a4324bccb4f2</id>
<content type='text'>
* replaces `typename *::type` constructs with `Eval` applications
* aims to further unify function evaluation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* replaces `typename *::type` constructs with `Eval` applications
* aims to further unify function evaluation
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed `Apply`'s template alias to `function`</title>
<updated>2015-02-13T20:54:48+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-13T20:54:48+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=73680466149c7aad21de558b7acc11dfa05183d2'/>
<id>73680466149c7aad21de558b7acc11dfa05183d2</id>
<content type='text'>
* `type` is used to represent evaluation of a template
* accessing the `function` doesn't evaluate it as it is the template itself
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `type` is used to represent evaluation of a template
* accessing the `function` doesn't evaluate it as it is the template itself
</pre>
</div>
</content>
</entry>
<entry>
<title>Added previously missing `Drop` implementation</title>
<updated>2015-02-12T21:03:26+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-12T21:03:26+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=9769b8fe1956b080c1f249f8c17862c0b5f5e4ef'/>
<id>9769b8fe1956b080c1f249f8c17862c0b5f5e4ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `Is` prefix to `EqualValue` and `EqualType`</title>
<updated>2015-02-12T12:36:27+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-12T12:36:27+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=4bb200de716891ed6c9fc182311c02685c8bdfd4'/>
<id>4bb200de716891ed6c9fc182311c02685c8bdfd4</id>
<content type='text'>
* analogously to `IsPair`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* analogously to `IsPair`
</pre>
</div>
</content>
</entry>
<entry>
<title>Revamped partial function application</title>
<updated>2015-02-12T09:16:54+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-12T09:16:54+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=ad27a79a2e6bc380e68ec77ae961917a9fb402d3'/>
<id>ad27a79a2e6bc380e68ec77ae961917a9fb402d3</id>
<content type='text'>
* moved internals into separate header i.e. the `detail` namespace relating to `Apply`
* implemented automatic alias selection by implementing aliae of the basic variadic `type` template alias in different base classes
** variadic partial application is implemented in `detail::apply_variadic`
*** `detail::apply_single` and `detail::apply_pair` define aliae to `detail::apply_variadic`'s `type` template alias
*** both restricted aliae derive from `detail::apply_variadic`
** `Apply` derives from any of the aliae defining base classes depending on the count of placeholders as determined by `detail::count_placeholders`
*** `Apply` is guaranteed to always be derived from `detail::apply_variadic` one way or the other
* changed functions, test cases and examples depending on `Apply` accordingly
** `Length` had to be reimplemented without `Apply` as it doesn't allow usage of aliae expecting a different count of arguments anymore
*** this is a advantage in the sense that core functionality of _TypeAsValue_ now doesn't depend on this complex partial application implementation anymore
*** such functionality may be reimplemented separately from `Apply`
* removed unnecessary `tav` namespace prefixes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* moved internals into separate header i.e. the `detail` namespace relating to `Apply`
* implemented automatic alias selection by implementing aliae of the basic variadic `type` template alias in different base classes
** variadic partial application is implemented in `detail::apply_variadic`
*** `detail::apply_single` and `detail::apply_pair` define aliae to `detail::apply_variadic`'s `type` template alias
*** both restricted aliae derive from `detail::apply_variadic`
** `Apply` derives from any of the aliae defining base classes depending on the count of placeholders as determined by `detail::count_placeholders`
*** `Apply` is guaranteed to always be derived from `detail::apply_variadic` one way or the other
* changed functions, test cases and examples depending on `Apply` accordingly
** `Length` had to be reimplemented without `Apply` as it doesn't allow usage of aliae expecting a different count of arguments anymore
*** this is a advantage in the sense that core functionality of _TypeAsValue_ now doesn't depend on this complex partial application implementation anymore
*** such functionality may be reimplemented separately from `Apply`
* removed unnecessary `tav` namespace prefixes
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved `Sort` list index deletion into `DeleteNth` function</title>
<updated>2015-02-10T17:40:05+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-10T17:40:05+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=f1268ca3bf10ab136bafbd63894ce12353fa8690'/>
<id>f1268ca3bf10ab136bafbd63894ce12353fa8690</id>
<content type='text'>
* as it is commonly required functionality and as such should be provided by this library
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as it is commonly required functionality and as such should be provided by this library
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated `Sort` to make use of `Partition` for splitting at pivot</title>
<updated>2015-02-09T14:46:26+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-09T14:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=709274402ff0a83dfaacae880dfa6db478d29ab1'/>
<id>709274402ff0a83dfaacae880dfa6db478d29ab1</id>
<content type='text'>
* added further test cases for `Sort` as well as `Nth` aliae
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added further test cases for `Sort` as well as `Nth` aliae
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `First`, `Second` and `Third` aliae for `Nth`</title>
<updated>2015-02-09T14:44:46+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-09T14:44:46+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=262806540c6eaf0dc45794cdf8f5f0404df10c79'/>
<id>262806540c6eaf0dc45794cdf8f5f0404df10c79</id>
<content type='text'>
* increases expressiveness in some contexts
* renamed `Partition` list template parameter to avoid confusion
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* increases expressiveness in some contexts
* renamed `Partition` list template parameter to avoid confusion
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `void` concatenation `List` template specialization</title>
<updated>2015-02-09T14:42:19+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-09T14:42:19+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=0d194826e1661a0b945211bccb387df0b7d89066'/>
<id>0d194826e1661a0b945211bccb387df0b7d89066</id>
<content type='text'>
* otherwise a type conflict occurs when trying to instantiate a list of `void`
** this hinders construction of higher level functionality on top of `List`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* otherwise a type conflict occurs when trying to instantiate a list of `void`
** this hinders construction of higher level functionality on top of `List`
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented higher order `Sort` list operation</title>
<updated>2015-02-08T19:38:00+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-08T19:38:00+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=beb46377c075ccc07a22b45771f8ad993a4e088e'/>
<id>beb46377c075ccc07a22b45771f8ad993a4e088e</id>
<content type='text'>
* _Quicksort_ is the algorithm of choice
** it lends itself quite well to the _TypeAsValue_ approach because of its recursive nature
** this required implementation of a `Drop` counterpart to `Take`
* the middle item of a given list is selected as the _pivot_ element
* the `List` list contructor had to be expanded to allow `void` arguments inside its variadic parameter pack
* added appropriate test cases
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* _Quicksort_ is the algorithm of choice
** it lends itself quite well to the _TypeAsValue_ approach because of its recursive nature
** this required implementation of a `Drop` counterpart to `Take`
* the middle item of a given list is selected as the _pivot_ element
* the `List` list contructor had to be expanded to allow `void` arguments inside its variadic parameter pack
* added appropriate test cases
</pre>
</div>
</content>
</entry>
<entry>
<title>Revamped to use `Cons` as a function and `Pair` as its result</title>
<updated>2015-02-06T18:26:26+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-06T18:26:26+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=27aaee43499c268903332c7e9e1e6ec2d193dc3a'/>
<id>27aaee43499c268903332c7e9e1e6ec2d193dc3a</id>
<content type='text'>
* this is analogous to _Scheme_ where a pair (dot-expression) is returned from a call to `cons`
* `Head` and `Tail` are kept as direct references to the `CAR` and `CDR` values of a pair to match e.g. the math operators
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* this is analogous to _Scheme_ where a pair (dot-expression) is returned from a call to `cons`
* `Head` and `Tail` are kept as direct references to the `CAR` and `CDR` values of a pair to match e.g. the math operators
</pre>
</div>
</content>
</entry>
<entry>
<title>Defer `If` template resolution analogously to other functions</title>
<updated>2015-02-05T16:13:39+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-05T16:13:39+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=1e0528b1a870e0e0f2b15f468fc60f80e5fc20b3'/>
<id>1e0528b1a870e0e0f2b15f468fc60f80e5fc20b3</id>
<content type='text'>
* all other functions sans `Cons` are resolved when the respective member `*::type` is instantiated
* this was changed soely to increase coherence
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* all other functions sans `Cons` are resolved when the respective member `*::type` is instantiated
* this was changed soely to increase coherence
</pre>
</div>
</content>
</entry>
<entry>
<title>Reimplemented `Contains` and `Delete` in terms of `Apply`</title>
<updated>2015-02-05T13:07:32+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-05T13:07:32+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=868f7d2c46302f3f993ff8f7943823243a5d1a6d'/>
<id>868f7d2c46302f3f993ff8f7943823243a5d1a6d</id>
<content type='text'>
* both depict the very usecase partial function application via `Apply` is suited for
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* both depict the very usecase partial function application via `Apply` is suited for
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Delete` in terms of `Remove`</title>
<updated>2015-02-02T17:58:36+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-02T17:58:36+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=d86aac04e5225e705af0dd7749fdc1c0454088a8'/>
<id>d86aac04e5225e705af0dd7749fdc1c0454088a8</id>
<content type='text'>
* analogously to how `Contains` is implemented as a wrapper around `Any`
* added appropriate test case and lessened restrictions on `Contains`'s comparator
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* analogously to how `Contains` is implemented as a wrapper around `Any`
* added appropriate test case and lessened restrictions on `Contains`'s comparator
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `DropWhile` analogously to `TakeWhile`</title>
<updated>2015-02-01T12:12:02+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-01T12:12:02+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=70429313c8d917255c35dabe14f64209dd6463db'/>
<id>70429313c8d917255c35dabe14f64209dd6463db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `TakeWhile` higher order list operation</title>
<updated>2015-02-01T11:57:22+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-01T11:57:22+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=e317b6c9318766eabda53d9dc6e9cdac55aae34b'/>
<id>e317b6c9318766eabda53d9dc6e9cdac55aae34b</id>
<content type='text'>
* as its name implies this function returns the longest initial prefix of a list that satisfies a given _Predicate_
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this function returns the longest initial prefix of a list that satisfies a given _Predicate_
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented higher order `Find` list search operation</title>
<updated>2015-01-31T11:04:34+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-31T11:04:34+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=a9ec2e4e13670c8084c6baae59d6f3631960e22c'/>
<id>a9ec2e4e13670c8084c6baae59d6f3631960e22c</id>
<content type='text'>
* added appropriate test case
* other queries in `query.h` may be redefined in terms of `Find`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added appropriate test case
* other queries in `query.h` may be redefined in terms of `Find`
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Remove` and `Partition` higher order list functions</title>
<updated>2015-01-30T18:31:30+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-30T18:31:30+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=6291f3ce10aa8ebffa895f21c4ccb91b7349c66a'/>
<id>6291f3ce10aa8ebffa895f21c4ccb91b7349c66a</id>
<content type='text'>
* `Remove` is a basic `Filter` alias that negates its predicate
* `Partition` builds on both `Remove` and `Filter` to return both the elements satisfying a predicate and those which don't
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* `Remove` is a basic `Filter` alias that negates its predicate
* `Partition` builds on both `Remove` and `Filter` to return both the elements satisfying a predicate and those which don't
</pre>
</div>
</content>
</entry>
<entry>
<title>Separated `Map` and `Filter`</title>
<updated>2015-01-30T18:07:22+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-30T18:07:22+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=e176dbe160eff01d172a11e7a191f756d4c87712'/>
<id>e176dbe160eff01d172a11e7a191f756d4c87712</id>
<content type='text'>
* there is no reason to keep them in the same header
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* there is no reason to keep them in the same header
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `ListOfType` list constructor alias</title>
<updated>2015-01-29T18:13:39+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-29T18:13:39+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=5f98c3eb62f3085a69f8df36de663bb7c6107341'/>
<id>5f98c3eb62f3085a69f8df36de663bb7c6107341</id>
<content type='text'>
* enables construction of `Cons` structures using the same value type across all their elements
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* enables construction of `Cons` structures using the same value type across all their elements
</pre>
</div>
</content>
</entry>
<entry>
<title>Redefined `Length` in terms of `Apply` and `Fold`</title>
<updated>2015-01-26T18:19:45+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-26T18:19:45+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=27b991ea23f71093b274b3ff1692c47274eb4d1d'/>
<id>27b991ea23f71093b274b3ff1692c47274eb4d1d</id>
<content type='text'>
* this function illustrates the use case `Apply` is currently intended for
* moved `Take` and `Nth` into separate files to resolve header resolution conflicts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* this function illustrates the use case `Apply` is currently intended for
* moved `Take` and `Nth` into separate files to resolve header resolution conflicts
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Count` in terms of `Fold` and `Map`</title>
<updated>2015-01-25T16:15:59+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-25T16:15:59+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=4f2aa4218ec63107b4624e576ff391c2019690a1'/>
<id>4f2aa4218ec63107b4624e576ff391c2019690a1</id>
<content type='text'>
* as its name implies this function counts the amount of elements satisfying a given _function_
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this function counts the amount of elements satisfying a given _function_
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Added `MakeList` list generator</title>
<updated>2015-01-24T11:07:55+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-24T11:07:55+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=f9844b741feac35622b9566c6afae9bb686f5149'/>
<id>f9844b741feac35622b9566c6afae9bb686f5149</id>
<content type='text'>
* as its name implies this function returns a list of `Count` elements of value `Element`
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this function returns a list of `Count` elements of value `Element`
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `ListTabulate` in terms of `Iota` and `Map`</title>
<updated>2015-01-23T19:32:48+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-23T19:32:48+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=8432906bf9be6f16aafdb23aaed34f1247404329'/>
<id>8432906bf9be6f16aafdb23aaed34f1247404329</id>
<content type='text'>
* added `Square` function to math operations header to facilitate a simple test case
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added `Square` function to math operations header to facilitate a simple test case
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Iota` list constructor</title>
<updated>2015-01-23T18:22:01+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-23T18:22:01+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=0cbc85dd74103ec5c7b2ac5802721ccf051d8454'/>
<id>0cbc85dd74103ec5c7b2ac5802721ccf051d8454</id>
<content type='text'>
* recursively generates a list of `Count` elements starting at `Initial` and consecutively adding `Step`
** as most functionality of this library this function was modeled after its _Scheme_ equivalent `iota`
** it may be used as the foundation of a set of higher order list generators including e.g. `list-tabulate`
* added appropriate test cases
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* recursively generates a list of `Count` elements starting at `Initial` and consecutively adding `Step`
** as most functionality of this library this function was modeled after its _Scheme_ equivalent `iota`
** it may be used as the foundation of a set of higher order list generators including e.g. `list-tabulate`
* added appropriate test cases
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented Scheme like `Concatenate` in terms of `Fold` and `Append`</title>
<updated>2015-01-22T17:27:20+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-22T17:27:20+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=1d7023c368d68a983faaee4c22fa6700a89393f8'/>
<id>1d7023c368d68a983faaee4c22fa6700a89393f8</id>
<content type='text'>
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed `Concatenate` to `Append` to match Scheme function naming</title>
<updated>2015-01-22T17:16:45+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-22T17:16:45+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=2e58bae3b46dc292736bbdbba6d4ee56b1ee51ed'/>
<id>2e58bae3b46dc292736bbdbba6d4ee56b1ee51ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Contains` in terms of `Any`</title>
<updated>2015-01-21T15:55:17+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-21T15:55:17+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=cb1ee55373e5efd1441664ec4e6942d4ace5e368'/>
<id>cb1ee55373e5efd1441664ec4e6942d4ace5e368</id>
<content type='text'>
* as its name implies this _function_ simplifies checking if a specific value is contained within a given list
* updated `Map` to actually resolve the provided _function_
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this _function_ simplifies checking if a specific value is contained within a given list
* updated `Map` to actually resolve the provided _function_
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved `Reverse` into separate header</title>
<updated>2015-01-21T15:31:14+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-21T15:31:14+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=611150b033340ed7433d6ba2482f86aa5655bd15'/>
<id>611150b033340ed7433d6ba2482f86aa5655bd15</id>
<content type='text'>
* it is not in itself a higher order function but only based on one
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* it is not in itself a higher order function but only based on one
</pre>
</div>
</content>
</entry>
<entry>
<title>Added higher order list query `None`</title>
<updated>2015-01-20T16:50:45+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-20T16:50:45+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=d33f7d10f4ee6bb41a73e1a2981de5d602f64952'/>
<id>d33f7d10f4ee6bb41a73e1a2981de5d602f64952</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented higher order list queries `All` and `Any`</title>
<updated>2015-01-20T16:06:20+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-20T16:06:20+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=5f2fdb01bdb9892cb8cf5bf1b1787db36587e1d6'/>
<id>5f2fdb01bdb9892cb8cf5bf1b1787db36587e1d6</id>
<content type='text'>
* in terms of `Fold` and `Map`, not the most efficient but reasonably concise
* added appropriate test cases
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* in terms of `Fold` and `Map`, not the most efficient but reasonably concise
* added appropriate test cases
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Filter` in terms of `Fold`</title>
<updated>2015-01-19T16:09:39+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-19T16:09:39+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=3cac56267edfbfd26e203ad674b9b8e74e44b14e'/>
<id>3cac56267edfbfd26e203ad674b9b8e74e44b14e</id>
<content type='text'>
* as its name implies this _function_ only returns elements which evaluate to _true_ when passed to a given _function_
** this marks the moment where _TypeAsValue_ supports something _ConstList_ does not, i.e. primary goal is achieved
*** namely returning different types depending on the actual _values_ of a _Cons_ structure
* added appropriate test case
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this _function_ only returns elements which evaluate to _true_ when passed to a given _function_
** this marks the moment where _TypeAsValue_ supports something _ConstList_ does not, i.e. primary goal is achieved
*** namely returning different types depending on the actual _values_ of a _Cons_ structure
* added appropriate test case
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `Reverse` function in terms of `Fold`</title>
<updated>2015-01-18T20:38:02+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-18T20:38:02+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=3c431f8a8eab25cdb1237f6a4e3ef6ac3f2b7479'/>
<id>3c431f8a8eab25cdb1237f6a4e3ef6ac3f2b7479</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
