mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 04:22:16 +00:00
https://svn.boost.org/svn/boost/trunk ........ r43206 | danieljames | 2008-02-10 09:55:03 +0000 (Sun, 10 Feb 2008) | 1 line Fix some broken links. ........ r43209 | danieljames | 2008-02-10 14:56:22 +0000 (Sun, 10 Feb 2008) | 1 line Link to people pages on the website, as they've been removed from the download. ........ r43210 | danieljames | 2008-02-10 15:02:17 +0000 (Sun, 10 Feb 2008) | 1 line Point links to the pages that used to be in 'more' to the site. ........ r43212 | danieljames | 2008-02-10 16:10:16 +0000 (Sun, 10 Feb 2008) | 1 line Fix links on the home page as well. ........ r43213 | danieljames | 2008-02-10 16:21:22 +0000 (Sun, 10 Feb 2008) | 1 line Generated documentation which is no longer generated. ........ [SVN r43214]
120 lines
3.4 KiB
HTML
120 lines
3.4 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<!-- Copyright David Abrahams 2006. Distributed under the Boost -->
|
|
<!-- Software License, Version 1.0. (See accompanying -->
|
|
<!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
|
<html>
|
|
<head>
|
|
<meta name="generator" content=
|
|
"HTML Tidy for Windows (vers 1st August 2002), see www.w3.org">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<link rel="stylesheet" type="text/css" href="../boost.css">
|
|
|
|
<title>Boost.Python - <boost/python/long.hpp></title>
|
|
</head>
|
|
|
|
<body>
|
|
<table border="0" cellpadding="7" cellspacing="0" width="100%" summary=
|
|
"header">
|
|
<tr>
|
|
<td valign="top" width="300">
|
|
<h3><a href="../../../../index.htm"><img height="86" width="277"
|
|
alt="C++ Boost" src="../../../../boost.png" border="0"></a></h3>
|
|
</td>
|
|
|
|
<td valign="top">
|
|
<h1 align="center"><a href="../index.html">Boost.Python</a></h1>
|
|
|
|
<h2 align="center">Header <boost/python/long.hpp></h2>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<hr>
|
|
|
|
<h2>Contents</h2>
|
|
|
|
<dl class="page-index">
|
|
<dt><a href="#introduction">Introduction</a></dt>
|
|
|
|
<dt><a href="#classes">Classes</a></dt>
|
|
|
|
<dd>
|
|
<dl class="page-index">
|
|
<dt><a href="#long_-spec">Class <code>long_</code></a></dt>
|
|
|
|
<dd>
|
|
<dl class="page-index">
|
|
<dt><a href="#long_-spec-synopsis">Class <code>long_</code>
|
|
synopsis</a></dt>
|
|
</dl>
|
|
</dd>
|
|
</dl>
|
|
</dd>
|
|
|
|
<dt><a href="#examples">Example(s)</a></dt>
|
|
</dl>
|
|
<hr>
|
|
|
|
<h2><a name="introduction"></a>Introduction</h2>
|
|
|
|
<p>Exposes a <a href=
|
|
"ObjectWrapper.html#TypeWrapper-concept">TypeWrapper</a> for the Python
|
|
<a href=
|
|
"http://www.python.org/doc/current/lib/typesnumeric.html">long</a>
|
|
integer type.</p>
|
|
|
|
<h2><a name="classes"></a>Classes</h2>
|
|
|
|
<h3><a name="long_-spec"></a>Class <code>long_</code></h3>
|
|
|
|
<p>Exposes the <a href=
|
|
"http://www.python.org/doc/current/lib/typesnumeric.html">numeric type
|
|
protocol</a> of Python's built-in <code>long</code> type. The semantics
|
|
of the constructors and member functions defined below can be fully
|
|
understood by reading the <a href=
|
|
"ObjectWrapper.html#TypeWrapper-concept">TypeWrapper</a> concept
|
|
definition. Since <code>long_</code> is publicly derived from <code><a
|
|
href="object.html#object-spec">object</a></code>, the public object
|
|
interface applies to <code>long_</code> instances as well.</p>
|
|
|
|
<h4><a name="long_-spec-synopsis"></a>Class <code>long_</code>
|
|
synopsis</h4>
|
|
<pre>
|
|
namespace boost { namespace python
|
|
{
|
|
class long_ : public object
|
|
{
|
|
public:
|
|
long_(); // new long_
|
|
|
|
template <class T>
|
|
explicit long_(T const& rhs);
|
|
|
|
template <class T, class U>
|
|
long_(T const& rhs, U const& base);
|
|
};
|
|
}}
|
|
</pre>
|
|
|
|
<h2><a name="examples"></a>Example</h2>
|
|
<pre>
|
|
namespace python = boost::python;
|
|
|
|
// compute a factorial without overflowing
|
|
python::long_ fact(long n)
|
|
{
|
|
if (n == 0)
|
|
return python::long_(1);
|
|
else
|
|
return n * fact(n - 1);
|
|
}
|
|
</pre>
|
|
|
|
<p>Revised 1 October, 2002</p>
|
|
|
|
<p><i>© Copyright <a href=
|
|
"http://www.boost.org/people/dave_abrahams.htm">Dave Abrahams</a> 2002.</i></p>
|
|
</body>
|
|
</html>
|
|
|