aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-02-21 21:53:35 +0100
committerAdrian Kummerlaender2016-02-21 21:54:49 +0100
commit064067b4c63de586c5923e35fd5d3411841c52ba (patch)
tree9ea316fc58a6a8b97ef22cdfc23815773f8baf90 /source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
parent2642b1b2d27edecbbd7ba9ff97d25ecae738e82d (diff)
downloadblog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.gz
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.bz2
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.lz
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.xz
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.zst
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.zip
Fix possessive form of _library_
Diffstat (limited to 'source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md')
-rw-r--r--source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md b/source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
index a2fc0b3..6a98630 100644
--- a/source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
+++ b/source/00_content/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
@@ -27,7 +27,7 @@ struct IndexSequence {
~~~
{: .language-cpp}
-This is achieved by the [`IndexSequence`](https://github.com/KnairdA/InputXSLT/blob/49e2010b489ab6d5516a9abd896c67738e0dc1cc/src/support/type/sequence.h) template above by recursively specializing the `Sequence` template using static recursion controlled by the standard libraries template metaprogramming utility template `std::conditional`. This means that e.g. the type `Sequence<0, 1, 2, 3>` can also be defined as `IndexSequence<4>::type`.
+This is achieved by the [`IndexSequence`](https://github.com/KnairdA/InputXSLT/blob/49e2010b489ab6d5516a9abd896c67738e0dc1cc/src/support/type/sequence.h) template above by recursively specializing the `Sequence` template using static recursion controlled by the standard library's template metaprogramming utility template `std::conditional`. This means that e.g. the type `Sequence<0, 1, 2, 3>` can also be defined as `IndexSequence<4>::type`.
Now all that is required to accomplish the goal is instantiating the sequence type and passing it to a variadic member template as [follows](https://github.com/KnairdA/InputXSLT/blob/master/src/function/base.h):