Skip to content
Snippets Groups Projects
  1. Dec 07, 2015
  2. Dec 06, 2015
  3. Dec 03, 2015
  4. Dec 02, 2015
  5. Dec 01, 2015
  6. Nov 26, 2015
  7. Nov 25, 2015
  8. Nov 24, 2015
  9. Nov 23, 2015
    • Carsten Gräser's avatar
      Merge branch 'feature/typelist' into 'master' · bdbcc7dc
      Carsten Gräser authored
      Feature/typelist
      
      This adds `template<class...T> struct TypeList {};`
      together with some utilities. It's e.g. used in the
      concept checking facility that I'll add soon.
      
      Besides this it can be used to 'store' an argument pack and access
      its members. In contrast to a `std::tuple<T...>` which is
      a container of objects of types `T...` a `TypeList<T...>`
      only captures the types themselves . Hence one can easily
      create TypeList objects and use them to pass types around
      or, e.g., in overload resolution where they can be used for
      tag-dispatch.
      
      Notice that adding a template `packer<T...>` doing exactly
      the same has been proposed for the standard in [N4115][].
      But in my opinion TypeList is a more instructive name.
      
      [N4115]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4115.html
      
      See merge request !7
      bdbcc7dc
    • Christoph Grüninger's avatar
      Merge branch 'feature/FS1702-cmake-add-suitesparse-support-rebased' into 'master' · 2734ae24
      Christoph Grüninger authored
      Feature/fs1702 cmake add suitesparse support rebased
      
      I had to fix Sphinx and tested it with the LDL branch from dune-istl.
      Tested by Tobias and Marco, thanks!
      
      See merge request !8
      2734ae24
Loading