-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathimplicit_conversion.txt
174 lines (164 loc) · 6.14 KB
/
implicit_conversion.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
NAME
pyimplicit_conversion
CLASSES
pybind11_builtins.pybind11_object(builtins.object)
ByReference
Number
One
Three
Two
Value
class ByReference(pybind11_builtins.pybind11_object)
| Method resolution order:
| ByReference
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyimplicit_conversion.ByReference, number: pyimplicit_conversion.Number) -> None
|
| 2. __init__(self: pyimplicit_conversion.ByReference, arg0: pyimplicit_conversion.ByReference) -> None
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| value
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
class Number(pybind11_builtins.pybind11_object)
| Method resolution order:
| Number
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyimplicit_conversion.Number, value: int) -> None
|
| 2. __init__(self: pyimplicit_conversion.Number, arg0: pyimplicit_conversion.Number) -> None
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| value
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
class One(pybind11_builtins.pybind11_object)
| Method resolution order:
| One
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyimplicit_conversion.One) -> None
|
| 2. __init__(self: pyimplicit_conversion.One, arg0: pyimplicit_conversion.One) -> None
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
class Three(pybind11_builtins.pybind11_object)
| Method resolution order:
| Three
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyimplicit_conversion.Three) -> None
|
| 2. __init__(self: pyimplicit_conversion.Three, arg0: pyimplicit_conversion.Three) -> None
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
class Two(pybind11_builtins.pybind11_object)
| Method resolution order:
| Two
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyimplicit_conversion.Two) -> None
|
| 2. __init__(self: pyimplicit_conversion.Two, arg0: pyimplicit_conversion.Two) -> None
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
class Value(pybind11_builtins.pybind11_object)
| Method resolution order:
| Value
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyimplicit_conversion.Value, one: pyimplicit_conversion.One) -> None
|
| 2. __init__(self: pyimplicit_conversion.Value, two: pyimplicit_conversion.Two) -> None
|
| 3. __init__(self: pyimplicit_conversion.Value, three: pyimplicit_conversion.Three) -> None
|
| 4. __init__(self: pyimplicit_conversion.Value, value: float) -> None
|
| 5. __init__(self: pyimplicit_conversion.Value, value: int) -> None
|
| 6. __init__(self: pyimplicit_conversion.Value, arg0: pyimplicit_conversion.Value) -> None
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| value
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
FUNCTIONS
test_by_reference(...) method of builtins.PyCapsule instance
test_by_reference(instance: pyimplicit_conversion.ByReference) -> int
test_value(...) method of builtins.PyCapsule instance
test_value(value: pyimplicit_conversion.Value) -> int