Lines Matching refs:init
1 [section boost/python/init.hpp]
3 <boost/python/init.hpp> defines the interface for exposing C++ constructors to Python as extension …
4 [section init-expressions]
5 An init-expression is used to describe a family of `__init__` methods to be generated for an extens…
10 …argument types which will be used to construct the wrapped C++ object. An init expression has one …
14 [section Class template `init`]
21 struct init
23 init(char const* doc = 0);
24 template <class Keywords> init(Keywords const& kw, char const* doc = 0);
25 template <class Keywords> init(char const* doc, Keywords const& kw);
32 [section Class template `init` constructors]
34 init(char const* doc = 0);
35 template <class Keywords> init(Keywords const& kw, char const* doc = 0);
36 template <class Keywords> init(char const* doc, Keywords const& kw);
40 [[Effects][The result is an init-expression whose docstring is doc and whose keywords are a referen…
44 [section Class template `init` observer functions]
51 …t_python_init_hpp.introduction.init_expressions init-expression] with all the same properties as t…
83 init<int,char const*>(args("x","y"), "X.__init__'s docstring")[
86 .def(init<double>())