Orbits  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
Public Member Functions | List of all members
_abcoll.Sequence Class Reference
Inheritance diagram for _abcoll.Sequence:
_abcoll.Sized _abcoll.Iterable _abcoll.Container _abcoll.MutableSequence

Public Member Functions

def __getitem__
 
def __iter__
 
def __contains__
 
def __reversed__
 
def index
 
def count
 
- Public Member Functions inherited from _abcoll.Sized
def __len__
 
def __subclasshook__
 
- Public Member Functions inherited from _abcoll.Iterable
def __iter__
 
def __subclasshook__
 
- Public Member Functions inherited from _abcoll.Container
def __contains__
 
def __subclasshook__
 

Detailed Description

All the operations on a read-only sequence.

Concrete subclasses must override __new__ or __init__,
__getitem__, and __len__.

Member Function Documentation

def _abcoll.Sequence.__contains__ (   self,
  value 
)
def _abcoll.Sequence.__getitem__ (   self,
  index 
)
def _abcoll.Sequence.__iter__ (   self)
def _abcoll.Sequence.__reversed__ (   self)
def _abcoll.Sequence.count (   self,
  value 
)
def _abcoll.Sequence.index (   self,
  value 
)
S.index(value) -> integer -- return first index of value.
   Raises ValueError if the value is not present.

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

Copyright 2014 Google Inc. All rights reserved.