aboutsummaryrefslogtreecommitdiff
path: root/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
commitaa224dcf77fbbcb699bba283d45b9c7465af052b (patch)
tree7f26d60f6d5a080b216630659fdf97220ebe50ea /articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
parent756c0688a240e5bd2600eea79cec1f57640f6430 (diff)
downloadblog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.gz
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.bz2
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.lz
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.xz
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.tar.zst
blog_content-aa224dcf77fbbcb699bba283d45b9c7465af052b.zip
Fix possessive form of _library_
Diffstat (limited to 'articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md')
-rw-r--r--articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md b/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
index a2fc0b3..6a98630 100644
--- a/articles/2014-07-11_mapping_arrays_using_tuples_in_cpp11.md
+++ b/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):