mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-12 17:26:13 +00:00
adding stl_binders
This commit is contained in:
committed by
Wenzel Jakob
parent
178c8a899d
commit
eae7744c0e
21
example/example17.py
Normal file
21
example/example17.py
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env python
|
||||
from __future__ import print_function
|
||||
|
||||
from example import VectorInt, VectorA
|
||||
|
||||
v_int = VectorInt(2)
|
||||
print( v_int.size() )
|
||||
|
||||
print( bool(v_int) )
|
||||
|
||||
v_int2 = VectorInt(2)
|
||||
print( v_int == v_int2 )
|
||||
|
||||
v_int2[1] = 1
|
||||
print( v_int != v_int2 )
|
||||
|
||||
v_int2.push_back(2)
|
||||
v_int2.push_back(3)
|
||||
print(v_int2)
|
||||
|
||||
v_a = VectorA()
|
||||
Reference in New Issue
Block a user