Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
de623a76
Commit
de623a76
authored
Mar 09, 2016
by
Wenzel Jakob
Browse files
added faq
parent
4e455dde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-0
docs/faq.rst
docs/faq.rst
+37
-0
docs/index.rst
docs/index.rst
+1
-0
No files found.
docs/faq.rst
0 → 100644
View file @
de623a76
Frequently asked questions
##########################
(under construction)
Limitations involving reference arguments
=========================================
In C++, it's fairly common to pass arguments using mutable references or
mutable pointers, which allows both read and write access to the value
supplied by the caller. This is sometimes done for efficiency reasons, or to
realize functions that have multiple return values. Here are two very basic
examples:
.. code-block:: cpp
void increment(int &i) { i++; }
void increment_ptr(int *i) { (*i)++; }
In Python, all arguments are passed by reference, so there is no general
issue in binding such code from Python.
However, certain basic Python types (like ``str``, ``int``, ``bool``,
``float``, etc.) are **immutable**. This means that the following attempt
to port the function to Python doesn't have the same effect on the value
provided by the caller -- in fact, it does nothing at all.
.. code-block:: python
def increment(i):
i += 1 # nope..
pybind11 is also affected by such language-level conventions, which means
that binding ``increment`` or ``increment_ptr`` will also create Python functions that don't modify their arguments.
Although inconvenient, one workaround is to encapsulate the immutable types
in a custom type that does allow modifications.
docs/index.rst
View file @
de623a76
...
@@ -14,5 +14,6 @@ Contents:
...
@@ -14,5 +14,6 @@ Contents:
advanced
advanced
cmake
cmake
benchmark
benchmark
faq
reference
reference
changelog
changelog
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment