Ticket #1316: object.html.diff

File object.html.diff, 1.4 KB (added by Stefan Seefeld, 14 years ago)
  • libs/python/doc/v2/object.html

     
    655655      template <class A0, class A1,...class An>
    656656      object operator()(A0 const&, A1 const&,...An const&) const;
    657657
     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
    658663      // truth value testing
    659664      //
    660665      typedef unspecified bool_type;
     
    704709      call<object>(object(*static_cast<U*>(this)).ptr(), a1,
    705710      a2,...aN)</dt>
    706711    </dl>
     712
    707713<pre>
     714object operator()(detail::args_proxy const &amp;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>
     721object operator()(detail::args_proxy const &amp;args,
     722                  detail::kwds_proxy const &amp;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>
    708732operator bool_type() const;
    709733</pre>
    710734