@@ -234,8 +234,8 @@ Docstrings
234
234
----------
235
235
236
236
Let's add one more bit of flourish by assigning a docstring to the extension
237
- module itself. Add the following line anywhere in the body of the `` NB_MODULE()
238
- {...} `` declaration:
237
+ module itself. Include the following line anywhere in the body of the
238
+ `` NB_MODULE() {...} `` declaration:
239
239
240
240
.. code-block :: cpp
241
241
@@ -284,10 +284,10 @@ simple C++ type named ``Dog`` defined as follows:
284
284
#include <string>
285
285
286
286
struct Dog {
287
- std::string m_name ;
287
+ std::string name ;
288
288
289
289
std::string bark() const {
290
- return m_name + ": woof!";
290
+ return name + ": woof!";
291
291
}
292
292
};
293
293
@@ -305,7 +305,7 @@ The ``Dog`` bindings look as follows:
305
305
.def(nb::init<>())
306
306
.def(nb::init<const std::string &>())
307
307
.def("bark", &Dog::bark)
308
- .def_readwrite ("name", &Dog::name);
308
+ .def_rw ("name", &Dog::name);
309
309
}
310
310
311
311
Let's look at selected lines of this example, starting with the added include directive:
@@ -317,8 +317,8 @@ Let's look at selected lines of this example, starting with the added include di
317
317
nanobind has a minimal core and initially doesn't know how to deal with STL
318
318
types like ``std::string ``. This line imports a *type caster * that realizes a
319
319
bidirectional conversion (C++ ``std::string `` ↔ Python ``str ``) to make the
320
- example usable. An :ref: `upcoming documentation section <type_casters >`
321
- contrasts type casters and other alternatives.
320
+ example usable. The next :ref: `documentation section <type_casters >` will
321
+ provide more detail on type casters and other alternatives.
322
322
323
323
The class binding declaration :class: `nb::class_\< T\> () <class_> ` supports both
324
324
``class `` and ``struct ``-style data structures.
@@ -333,15 +333,15 @@ and installs it in the :cpp:class:`nb::module_ <module_>` ``m``.
333
333
Initially, this type is completely empty---it has no members and cannot be
334
334
instantiated. The subsequent chain of binding declarations binds two
335
335
constructor overloads (via :cpp:class: `nb::init\< ...\> () <init> `), a method,
336
- and the ``name `` field (via :cpp:func: `.def_readwrite (..)
337
- <class_::def_readwrite> ` ).
336
+ and the mutable ``name `` field (via :cpp:func: `.def_rw (..) <class_::def_rw> `,
337
+ where `` rw `` stands for read/write access ).
338
338
339
339
.. code-block :: cpp
340
340
341
341
.def(nb::init<>())
342
342
.def(nb::init<const std::string &>())
343
343
.def("bark", &Dog::bark)
344
- .def_readwrite ("name", &Dog::name);
344
+ .def_rw ("name", &Dog::name);
345
345
346
346
An interactive Python session demonstrating this example is shown below:
347
347
@@ -359,19 +359,43 @@ An interactive Python session demonstrating this example is shown below:
359
359
>>> d.bark()
360
360
'Charlie: woof!'
361
361
362
+ The example showed how to bind constructors, methods, and mutable fields. Many
363
+ other things can be bound using analogous :cpp:class: `nb::class_\< ...\>
364
+ <class_> ` methods:
365
+
366
+ .. list-table ::
367
+ :widths: 40 60
368
+ :header-rows: 1
369
+
370
+ * - Type
371
+ - method
372
+ * - Methods & constructors
373
+ - :cpp:func: `.def() <class_::def> `
374
+ * - Fields
375
+ - :cpp:func: `.def_ro() <class_::def_ro> `,
376
+ :cpp:func: `.def_rw() <class_::def_rw> `
377
+ * - Properties
378
+ - :cpp:func: `.def_prop_ro() <class_::def_prop_ro> `,
379
+ :cpp:func: `.def_prop_rw() <class_::def_prop_rw> `
380
+ * - Static methods
381
+ - :cpp:func: `.def_static() <class_::def_static> `
382
+ * - Static fields
383
+ - :cpp:func: `.def_ro_static() <class_::def_ro_static> `,
384
+ :cpp:func: `.def_rw_static() <class_::def_rw_static> `
385
+ * - Static properties
386
+ - :cpp:func: `.def_prop_ro_static() <class_::def_prop_ro_static> `,
387
+ :cpp:func: `.def_prop_rw_static() <class_::def_prop_rw_static> `
388
+
362
389
.. note ::
363
390
364
- Constructors and methods support :ref: `docstrings <docstrings >`,
391
+ All of these binding declarations support :ref: `docstrings <docstrings >`,
365
392
:ref: `keyword, and default argument <keyword_and_default_args >` annotations
366
393
as before.
367
394
368
- Binding fields
369
- --------------
370
-
371
395
.. _binding_lambdas :
372
396
373
- Lambda functions
374
- ----------------
397
+ Binding lambda functions
398
+ ------------------------
375
399
376
400
Note how ``print(d) `` produced a rather useless summary in the example above:
377
401
@@ -380,10 +404,11 @@ Note how ``print(d)`` produced a rather useless summary in the example above:
380
404
>>> print(d)
381
405
<my_ext.Dog object at 0x1044540f0>
382
406
383
- To address this, we must add a special method named ``__repr__ `` that returns a
384
- human-readable summary. Unfortunately, a function with such functionality does
385
- not exist in the ``Dog `` type, and it would be nice if we did not have to
386
- modify it. To accomplish this goal, we can instead bind a *lambda function *:
407
+ To address this, we can add a special Python method named ``__repr__ `` that
408
+ returns a human-readable summary. Unfortunately, a corresponding function with
409
+ such functionality does not currently exist in the C++ type, and it would be
410
+ nice if we did not have to modify it. We can bind a *lambda function * to
411
+ achieve both goals:
387
412
388
413
.. code-block :: cpp
389
414
0 commit comments