From 4626b5a4afc670c6e0700e54a0970c92777f9d5e Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 30 Jun 2016 14:45:57 +0200 Subject: [PATCH] updated limitations section --- docs/limitations.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/limitations.rst b/docs/limitations.rst index 434d09b3..c6100d16 100644 --- a/docs/limitations.rst +++ b/docs/limitations.rst @@ -12,7 +12,11 @@ certain limitations: - Multiple inheritance relationships on the C++ side cannot be mapped to Python. -Both of these features could be implemented but would lead to a significant +- The NumPy interface ``pybind11::array`` greatly simplifies accessing + numerical data from C++ (and vice versa), but it's not a full-blown array + class like ``Eigen::Array`` or ``boost.multi_array``. + +All of these features could be implemented but would lead to a significant increase in complexity. I've decided to draw the line here to keep this project simple and compact. Users who absolutely require these features are encouraged to fork pybind11.