2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 08:32:12 +00:00

Add more description to pack

This commit is contained in:
Paul
2015-10-30 17:28:02 -05:00
parent d6143dced7
commit 62d248b453

View File

@@ -29,11 +29,11 @@
/// Synopsis
/// --------
///
/// // Capture lvalues and rvalues
/// // Capture lvalues by reference and rvalues by value.
/// template<class... Ts>
/// constexpr auto capture(Ts&&... xs);
///
/// // Capture using perfect forwarding
/// // Capture lvalues by reference and rvalue reference by reference
/// template<class... Ts>
/// constexpr auto capture_forward(Ts&&... xs);
///