enigma2  2.6
Public Member Functions | Static Public Attributes | List of all members
enigma.StringList Class Reference
Inheritance diagram for enigma.StringList:

Public Member Functions

def iterator (self)
 
def __iter__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def __len__ (self)
 
def __getslice__ (self, i, j)
 
def __setslice__ (self, *args)
 
def __delslice__ (self, i, j)
 
def __delitem__ (self, *args)
 
def __getitem__ (self, *args)
 
def __setitem__ (self, *args)
 
def pop (self)
 
def append (self, x)
 
def empty (self)
 
def size (self)
 
def swap (self, v)
 
def begin (self)
 
def end (self)
 
def rbegin (self)
 
def rend (self)
 
def clear (self)
 
def get_allocator (self)
 
def pop_back (self)
 
def erase (self, *args)
 
def __init__ (self, *args)
 
def push_back (self, x)
 
def front (self)
 
def back (self)
 
def assign (self, n, x)
 
def resize (self, *args)
 
def insert (self, *args)
 
def pop_front (self)
 
def push_front (self, x)
 
def reverse (self)
 

Static Public Attributes

 thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
 
 iterator
 
 pop
 
 append
 
 empty
 
 size
 
 swap
 
 begin
 
 end
 
 rbegin
 
 rend
 
 clear
 
 get_allocator
 
 pop_back
 
 erase
 
 push_back
 
 front
 
 back
 
 assign
 
 resize
 
 insert
 
 pop_front
 
 push_front
 
 reverse
 

Detailed Description

Proxy of C++ std::list<(std::string)> class.

Constructor & Destructor Documentation

◆ __init__()

def enigma.StringList.__init__ (   self,
args 
)
__init__(std::list<(std::string)> self) -> StringList
__init__(std::list<(std::string)> self, StringList arg2) -> StringList
__init__(std::list<(std::string)> self, std::list< std::string >::size_type size) -> StringList
__init__(std::list<(std::string)> self, std::list< std::string >::size_type size, std::list< std::string >::value_type const & value) -> StringList

Member Function Documentation

◆ __bool__()

def enigma.StringList.__bool__ (   self)
__bool__(StringList self) -> bool

◆ __delitem__()

def enigma.StringList.__delitem__ (   self,
args 
)
__delitem__(StringList self, std::list< std::string >::difference_type i)
__delitem__(StringList self, PySliceObject * slice)

◆ __delslice__()

def enigma.StringList.__delslice__ (   self,
  i,
  j 
)
__delslice__(StringList self, std::list< std::string >::difference_type i, std::list< std::string >::difference_type j)

◆ __getitem__()

def enigma.StringList.__getitem__ (   self,
args 
)
__getitem__(StringList self, PySliceObject * slice) -> StringList
__getitem__(StringList self, std::list< std::string >::difference_type i) -> std::list< std::string >::value_type const &

◆ __getslice__()

def enigma.StringList.__getslice__ (   self,
  i,
  j 
)
__getslice__(StringList self, std::list< std::string >::difference_type i, std::list< std::string >::difference_type j) -> StringList

◆ __iter__()

def enigma.StringList.__iter__ (   self)

◆ __len__()

def enigma.StringList.__len__ (   self)
__len__(StringList self) -> std::list< std::string >::size_type

◆ __nonzero__()

def enigma.StringList.__nonzero__ (   self)
__nonzero__(StringList self) -> bool

◆ __setitem__()

def enigma.StringList.__setitem__ (   self,
args 
)
__setitem__(StringList self, PySliceObject * slice, StringList v)
__setitem__(StringList self, PySliceObject * slice)
__setitem__(StringList self, std::list< std::string >::difference_type i, std::list< std::string >::value_type const & x)

◆ __setslice__()

def enigma.StringList.__setslice__ (   self,
args 
)
__setslice__(StringList self, std::list< std::string >::difference_type i, std::list< std::string >::difference_type j)
__setslice__(StringList self, std::list< std::string >::difference_type i, std::list< std::string >::difference_type j, StringList v)

◆ append()

def enigma.StringList.append (   self,
  x 
)
append(StringList self, std::list< std::string >::value_type const & x)

◆ assign()

def enigma.StringList.assign (   self,
  n,
  x 
)
assign(StringList self, std::list< std::string >::size_type n, std::list< std::string >::value_type const & x)

◆ back()

def enigma.StringList.back (   self)
back(StringList self) -> std::list< std::string >::value_type const &

◆ begin()

def enigma.StringList.begin (   self)
begin(StringList self) -> std::list< std::string >::iterator

◆ clear()

def enigma.StringList.clear (   self)
clear(StringList self)

◆ empty()

def enigma.StringList.empty (   self)
empty(StringList self) -> bool

◆ end()

def enigma.StringList.end (   self)
end(StringList self) -> std::list< std::string >::iterator

◆ erase()

def enigma.StringList.erase (   self,
args 
)
erase(StringList self, std::list< std::string >::iterator pos) -> std::list< std::string >::iterator
erase(StringList self, std::list< std::string >::iterator first, std::list< std::string >::iterator last) -> std::list< std::string >::iterator

◆ front()

def enigma.StringList.front (   self)
front(StringList self) -> std::list< std::string >::value_type const &

◆ get_allocator()

def enigma.StringList.get_allocator (   self)
get_allocator(StringList self) -> std::list< std::string >::allocator_type

◆ insert()

def enigma.StringList.insert (   self,
args 
)
insert(StringList self, std::list< std::string >::iterator pos, std::list< std::string >::value_type const & x) -> std::list< std::string >::iterator
insert(StringList self, std::list< std::string >::iterator pos, std::list< std::string >::size_type n, std::list< std::string >::value_type const & x)

◆ iterator()

def enigma.StringList.iterator (   self)
iterator(StringList self) -> SwigPyIterator

◆ pop()

def enigma.StringList.pop (   self)
pop(StringList self) -> std::list< std::string >::value_type

◆ pop_back()

def enigma.StringList.pop_back (   self)
pop_back(StringList self)

◆ pop_front()

def enigma.StringList.pop_front (   self)
pop_front(StringList self)

◆ push_back()

def enigma.StringList.push_back (   self,
  x 
)
push_back(StringList self, std::list< std::string >::value_type const & x)

◆ push_front()

def enigma.StringList.push_front (   self,
  x 
)
push_front(StringList self, std::list< std::string >::value_type const & x)

◆ rbegin()

def enigma.StringList.rbegin (   self)
rbegin(StringList self) -> std::list< std::string >::reverse_iterator

◆ rend()

def enigma.StringList.rend (   self)
rend(StringList self) -> std::list< std::string >::reverse_iterator

◆ resize()

def enigma.StringList.resize (   self,
args 
)
resize(StringList self, std::list< std::string >::size_type new_size)
resize(StringList self, std::list< std::string >::size_type new_size, std::list< std::string >::value_type const & x)

◆ reverse()

def enigma.StringList.reverse (   self)
reverse(StringList self)

◆ size()

def enigma.StringList.size (   self)
size(StringList self) -> std::list< std::string >::size_type

◆ swap()

def enigma.StringList.swap (   self,
  v 
)
swap(StringList self, StringList v)

Member Data Documentation

◆ append

enigma.StringList.append
static

◆ assign

enigma.StringList.assign
static

◆ back

enigma.StringList.back
static

◆ begin

enigma.StringList.begin
static

◆ clear

enigma.StringList.clear
static

◆ empty

enigma.StringList.empty
static

◆ end

enigma.StringList.end
static

◆ erase

enigma.StringList.erase
static

◆ front

enigma.StringList.front
static

◆ get_allocator

enigma.StringList.get_allocator
static

◆ insert

enigma.StringList.insert
static

◆ iterator

enigma.StringList.iterator
static

◆ pop

enigma.StringList.pop
static

◆ pop_back

enigma.StringList.pop_back
static

◆ pop_front

enigma.StringList.pop_front
static

◆ push_back

enigma.StringList.push_back
static

◆ push_front

enigma.StringList.push_front
static

◆ rbegin

enigma.StringList.rbegin
static

◆ rend

enigma.StringList.rend
static

◆ resize

enigma.StringList.resize
static

◆ reverse

enigma.StringList.reverse
static

◆ size

enigma.StringList.size
static

◆ swap

enigma.StringList.swap
static

◆ thisown

enigma.StringList.thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
static

The documentation for this class was generated from the following file: