From 4fadd968fa12130524c8380f33fcfe25d4de79e5 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:24:46 +0900 Subject: Imported Upstream version 1.65.0 Change-Id: Icf8400b375482cb11bcf77440a6934ba360d6ba4 Signed-off-by: DongHun Kwak --- doc/html/boost/type_erasure/callable.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'doc/html/boost/type_erasure/callable.html') diff --git a/doc/html/boost/type_erasure/callable.html b/doc/html/boost/type_erasure/callable.html index 5a53ef6497..cabfc32d04 100644 --- a/doc/html/boost/type_erasure/callable.html +++ b/doc/html/boost/type_erasure/callable.html @@ -7,8 +7,8 @@ - - + + @@ -21,7 +21,7 @@

-PrevUpHomeNext +PrevUpHomeNext
@@ -35,18 +35,18 @@ template<typename Sig, typename F = _self> struct callable { - // public static functions - static R apply(F &, T...); + // public static functions + static R apply(F &, T...); };
-

Description

+

Description

The callable concept allows an any to hold function objects. Sig is interpreted in the same way as for Boost.Function, except that the arguments and return type are allowed to be placeholders. F must be a placeholder.

Multiple instances of callable can be used simultaneously. Overload resolution works normally. Note that unlike Boost.Function, callable does not provide result_type. It does, however, support boost::result_of.

-

-callable public static functions

+

+callable public static functions

  1. -
    static R apply(F & f, T... arg);
    +
    static R apply(F & f, T... arg);

    R is the result type of Sig and T is the argument types of Sig.

@@ -62,7 +62,7 @@
-PrevUpHomeNext +PrevUpHomeNext
-- cgit v1.2.3