Ticket #1316: object.html.diff
File object.html.diff, 1.4 KB (added by , 14 years ago) |
---|
-
libs/python/doc/v2/object.html
655 655 template <class A0, class A1,...class An> 656 656 object operator()(A0 const&, A1 const&,...An const&) const; 657 657 658 detail::args_proxy operator* () const; 659 object operator()(detail::args_proxy const &args) const; 660 object operator()(detail::args_proxy const &args, 661 detail::kwds_proxy const &kwds) const; 662 658 663 // truth value testing 659 664 // 660 665 typedef unspecified bool_type; … … 704 709 call<object>(object(*static_cast<U*>(this)).ptr(), a1, 705 710 a2,...aN)</dt> 706 711 </dl> 712 707 713 <pre> 714 object operator()(detail::args_proxy const &args) const; 715 </pre> 716 <dl class="function-semantics"> 717 <dt><b>Effects:</b> 718 call object with arguments given by the tuple <varname>args</varname></dt> 719 </dl> 720 <pre> 721 object operator()(detail::args_proxy const &args, 722 detail::kwds_proxy const &kwds) const; 723 </pre> 724 <dl class="function-semantics"> 725 <dt><b>Effects:</b> 726 call object with arguments given by the tuple <varname>args</varname>, and named 727 arguments given by the dictionary <varname>kwds</varname></dt> 728 </dl> 729 730 731 <pre> 708 732 operator bool_type() const; 709 733 </pre> 710 734