Просмотр исходного кода

Adds Jupyter notebooks to documentation

Caleb Fangmeier лет назад: 8
Родитель
Сommit
cd5e74c021
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      value.hpp

+ 4 - 1
value.hpp

@@ -78,7 +78,10 @@ struct call_impl<F, Tuple, true, Total, N...>
     }
 };
 
-// This calls a function of type F with the contents of the tuple as arguments
+/**
+ * This calls a function of type F with the contents of the tuple as arguments
+ *  \see http://stackoverflow.com/questions/10766112/c11-i-can-go-from-multiple-args-to-tuple-but-can-i-go-from-tuple-to-multiple
+ */
 template <typename F, typename Tuple>
 auto call(F f, Tuple && t)
 {