瀏覽代碼

Adds Jupyter notebooks to documentation

Caleb Fangmeier 8 年之前
父節點
當前提交
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)
 {