LUMIERA.clone/doc
Ichthyostega fd2d56ca45 refactoring(#988): switch function-closure to std::tuple
not sure yet if any of this works, because the
technicalities of dealing with variadic types are
quite different to our LISP-style typelist processing.

The good news is that with variadic templates it is
indeed possible, to supply dynamically picked arguments
to another function taking arbitrary arguments.

This all relies on the feature to unpack argument packs,
and, more specifically, about the possiblity to "wrap"
this unpacking around interspersed function call syntax

template<size_t...i>
Xyz
do_something(MyTuple myTuple)
  {
    return Xyz (std::get<i> (myTuple) ... );
  }

Here the '...' will be applied to the i... and then
the whole std::get-construct will be wrapped around
each element. Mind bogging, but very powerful
2016-01-19 03:56:53 +01:00
..
design release prep: clean-up obsolete information 2015-11-02 21:14:24 +01:00
devel release prep: bump version number 2015-11-02 21:31:01 +01:00
technical refactoring(#988): switch function-closure to std::tuple 2016-01-19 03:56:53 +01:00
user DOC: some problems when building with GCC-5 2015-11-20 05:34:11 +01:00
.gitignore Especially ignore Asciidoc generated HTML files in the documentation tree 2010-11-17 04:39:36 +01:00
DIR_INFO spelling fixes 2011-02-06 02:12:55 +01:00
index.txt DOC: slightly shorten and re-structure the "Contributing" tutorial 2013-10-27 08:41:40 +01:00
SConscript DOC: reorganise the Doxygen configuration and structure 2013-10-25 06:34:38 +02:00