hedge :: _internal :: IntVector :: Class IntVector
[hide private]
[frames] | no frames]

Class IntVector


Instance Methods [hide private]
 
__contains__(...)
__contains__( (IntVector)arg1, (object)arg2) -> bool :
 
__delitem__(...)
__delitem__( (IntVector)arg1, (object)arg2) -> None :
 
__getitem__(...)
__getitem__( (object)arg1, (object)arg2) -> object :
 
__init__(...)
__init__( (object)arg1) -> None :
 
__iter__(...)
__iter__( (object)arg1) -> object :
 
__len__(...)
__len__( (IntVector)arg1) -> int :
 
__reduce__(...)
helper for pickle
 
__setitem__(...)
__setitem__( (IntVector)arg1, (object)arg2, (object)arg3) -> None :
 
append(...)
append( (IntVector)arg1, (object)arg2) -> None :
 
extend(...)
extend( (IntVector)arg1, (object)arg2) -> None :
 
reserve(...)
reserve( (IntVector)arg1, (object)advised_size) -> None :

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]
  __instance_size__ = 20
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__contains__(...)
(In operator)

 

__contains__( (IntVector)arg1, (object)arg2) -> bool :

    C++ signature :
        bool __contains__(std::vector<int, std::allocator<int> > {lvalue},_object*)

__delitem__(...)
(Index deletion operator)

 

__delitem__( (IntVector)arg1, (object)arg2) -> None :

    C++ signature :
        void __delitem__(std::vector<int, std::allocator<int> > {lvalue},_object*)

__getitem__(...)
(Indexing operator)

 

__getitem__( (object)arg1, (object)arg2) -> object :

    C++ signature :
        boost::python::api::object __getitem__(boost::python::back_reference<std::vector<int, std::allocator<int> >&>,_object*)

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (object)arg2) -> object :

    C++ signature :
        void* __init__(boost::python::api::object,boost::python::api::object)

Overrides: object.__init__

__iter__(...)

 

__iter__( (object)arg1) -> object :

    C++ signature :
        boost::python::objects::iterator_range<boost::python::return_value_policy<boost::python::return_by_value, boost::python::default_call_policies>, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > > __iter__(boost::python::back_reference<std::vector<int, std::allocator<int> >&>)

__len__(...)
(Length operator)

 

__len__( (IntVector)arg1) -> int :

    C++ signature :
        unsigned int __len__(std::vector<int, std::allocator<int> > {lvalue})

__reduce__(...)

 

helper for pickle

Overrides: object.__reduce__
(inherited documentation)

__setitem__(...)
(Index assignment operator)

 

__setitem__( (IntVector)arg1, (object)arg2, (object)arg3) -> None :

    C++ signature :
        void __setitem__(std::vector<int, std::allocator<int> > {lvalue},_object*,_object*)

append(...)

 

append( (IntVector)arg1, (object)arg2) -> None :

    C++ signature :
        void append(std::vector<int, std::allocator<int> > {lvalue},boost::python::api::object)

extend(...)

 

extend( (IntVector)arg1, (object)arg2) -> None :

    C++ signature :
        void extend(std::vector<int, std::allocator<int> > {lvalue},boost::python::api::object)

reserve(...)

 

reserve( (IntVector)arg1, (object)advised_size) -> None :

    C++ signature :
        void reserve(std::vector<int, std::allocator<int> > {lvalue},unsigned int)