List (version 0.0.1)
index
List.html

This package implements tools to build python package and tools.
 
>>> from List import list
>>> l = list(["a", 'b', 1])
>>> _ = l | print
a
b
1
>>> l |= print
a
b
1
>>> l
[None, None, None]
>>> ~l
[1, 'b', 'a']
>>> t = (0, 1)
>>> l - t
['a', 'b']
>>> l -= t
Traceback (most recent call last):
  ...
ValueError: list.remove(x): x not in list
>>> t = ("a", "b")
>>> l -= t
>>> l
[1]
>>> str_list = list(["0", '2', "1"])
>>> int_list = str_list | int
>>> int_list
[0, 2, 1]
>>>

 
Classes
       
builtins.list(builtins.object)
list

 
class list(builtins.list)
    list(iterable=(), /)
 

 
 
Method resolution order:
list
builtins.list
builtins.object

Methods defined here:
__inv__(self) -> List[Any]
This function implements '~<list>'.
__invert__(self) -> List[Any]
This function implements '~<list>'.
__ior__(self, other: collections.abc.Callable) -> List[Any]
This function implements '<list> |= <function>'.
__isub__(self, other: collections.abc.Iterator[typing.Any]) -> List[Any]
This function implements '<list> -= <Iterator>'
__or__(self, other: collections.abc.Callable) -> List[Any]
This function implements '<list> | <function>'.
__sub__(self, other: collections.abc.Iterator[typing.Any]) -> List[Any]
This function implements '<list> - <Iterator>'

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from builtins.list:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return key in self.
__delitem__(self, key, /)
Delete self[key].
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(...)
x.__getitem__(y) <==> x[y]
__gt__(self, value, /)
Return self>value.
__iadd__(self, value, /)
Implement self+=value.
__imul__(self, value, /)
Implement self*=value.
__init__(self, /, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__repr__(self, /)
Return repr(self).
__reversed__(self, /)
Return a reverse iterator over the list.
__rmul__(self, value, /)
Return value*self.
__setitem__(self, key, value, /)
Set self[key] to value.
__sizeof__(self, /)
Return the size of the list in memory, in bytes.
append(self, object, /)
Append object to the end of the list.
clear(self, /)
Remove all items from list.
copy(self, /)
Return a shallow copy of the list.
count(self, value, /)
Return number of occurrences of value.
extend(self, iterable, /)
Extend list by appending elements from the iterable.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.
insert(self, index, object, /)
Insert object before index.
pop(self, index=-1, /)
Remove and return item at index (default last).
 
Raises IndexError if list is empty or index is out of range.
remove(self, value, /)
Remove first occurrence of value.
 
Raises ValueError if the value is not present.
reverse(self, /)
Reverse *IN PLACE*.
sort(self, /, *, key=None, reverse=False)
Sort the list in ascending order and return None.
 
The sort is in-place (i.e. the list itself is modified) and stable (i.e. the
order of two equal elements is maintained).
 
If a key function is given, apply it once to each list item and sort them,
ascending or descending, according to their function values.
 
The reverse flag can be set to sort in descending order.

Class methods inherited from builtins.list:
__class_getitem__(...) from builtins.type
See PEP 585

Static methods inherited from builtins.list:
__new__(*args, **kwargs) from builtins.type
Create and return a new object.  See help(type) for accurate signature.

Data and other attributes inherited from builtins.list:
__hash__ = None

 
Data
        __all__ = ['list']
__author_email__ = 'mauricelambert434@gmail.com'
__copyright__ = '\nPythonToolsKit Copyright (C) 2022 Maurice Lam...ome to redistribute it\nunder certain conditions.\n'
__description__ = '\nThis package implements tools to build python package and tools.\n'
__license__ = 'GPL-3.0 License'
__maintainer__ = 'Maurice Lambert'
__maintainer_email__ = 'mauricelambert434@gmail.com'
__url__ = 'https://github.com/mauricelambert/PythonToolsKit'

 
Author
        Maurice Lambert