Adding Python-style modifiers for vector. Wrapping has_insertion_operator_implementation in _MSC_VER ifdef’s. Adding ‘!=0’ instead of bool cast’s.
diff --git a/example/example17.py b/example/example17.py
index 5385280..d41a325 100644
--- a/example/example17.py
+++ b/example/example17.py
@@ -16,6 +16,9 @@
 
 v_int2.push_back(2)
 v_int2.push_back(3)
+v_int2.insert(0, 1)
+v_int2.insert(0, 2)
+v_int2.insert(0, 3)
 print(v_int2)
 
 v_a = VectorA()
diff --git a/example/example17.ref b/example/example17.ref
index 09489f1..249fbab 100644
--- a/example/example17.ref
+++ b/example/example17.ref
@@ -2,4 +2,4 @@
 True
 True
 True
-VectorInt[0, 1, 2, 3]
+VectorInt[3, 2, 1, 0, 1, 2, 3]