<feed xmlns='http://www.w3.org/2005/Atom'>
<title>TypeAsValue/src/conditional, 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>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>Added `Cond` branch condition assertion</title>
<updated>2015-02-25T17:47:56+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-25T17:47:56+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=e26621df352272688834361e7d026338cefb1372'/>
<id>e26621df352272688834361e7d026338cefb1372</id>
<content type='text'>
* improves error messages in case no branch condition resolves to `true`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* improves error messages in case no branch condition resolves to `true`
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduced `Branch` and `Else` pair aliases for usage in `Cond`</title>
<updated>2015-02-19T18:18:48+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-19T18:18:48+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=a07999f7436802f15fc21bebd083006c9e681638'/>
<id>a07999f7436802f15fc21bebd083006c9e681638</id>
<content type='text'>
* pure _syntax sugar_ to improve readability of `Cond` conditionals
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* pure _syntax sugar_ to improve readability of `Cond` conditionals
</pre>
</div>
</content>
</entry>
<entry>
<title>Added missing `Cond` dependency headers</title>
<updated>2015-02-19T18:00:19+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-19T18:00:19+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=1528d3cc919031d04a2d140a35d9b4cff6633eba'/>
<id>1528d3cc919031d04a2d140a35d9b4cff6633eba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>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>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>Implemented `Cond` conditional</title>
<updated>2015-02-12T13:32:33+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-02-12T13:32:33+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=246cb31c1e20cdcc21a6a607de4b0095c71315d6'/>
<id>246cb31c1e20cdcc21a6a607de4b0095c71315d6</id>
<content type='text'>
* returns the `CDR` of the first true `CAR` in a given list of pairs
* reimplemented `Apply` base class selection in terms of `Cond`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* returns the `CDR` of the first true `CAR` in a given list of pairs
* reimplemented `Apply` base class selection in terms of `Cond`
</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>Implemented `Length` function</title>
<updated>2015-01-17T16:28:02+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-17T16:28:02+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=385c51950644121d7b6e04718374b1af63209ac7'/>
<id>385c51950644121d7b6e04718374b1af63209ac7</id>
<content type='text'>
* as its name implies this function returns the length of a given _Cons_ structure
* result type is `Size&lt;Length&gt;` which wraps `std::size_t` to match the `sizeof` operator
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* as its name implies this function returns the length of a given _Cons_ structure
* result type is `Size&lt;Length&gt;` which wraps `std::size_t` to match the `sizeof` operator
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented `tav::If` as `std::conditional` wrapper</title>
<updated>2015-01-16T19:13:55+00:00</updated>
<author>
<name>Adrian Kummerlaender</name>
</author>
<published>2015-01-16T19:13:55+00:00</published>
<link rel='alternate' type='text/html' href='http://code.kummerlaender.eu/TypeAsValue/commit/?id=f751632317a8cfb8474645e5964008bc7b6b6d90'/>
<id>f751632317a8cfb8474645e5964008bc7b6b6d90</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
