34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
"""
|
|
Efficient arrays of numeric data.
|
|
|
|
MicroPython module: https://docs.micropython.org/en/v1.21.0/library/array.html
|
|
|
|
CPython module: :mod:`python:array` https://docs.python.org/3/library/array.html .
|
|
|
|
Supported format codes: ``b``, ``B``, ``h``, ``H``, ``i``, ``I``, ``l``,
|
|
``L``, ``q``, ``Q``, ``f``, ``d`` (the latter 2 depending on the
|
|
floating-point support).
|
|
"""
|
|
from _typeshed import Incomplete, Incomplete as Incomplete
|
|
from typing import Any, List, Optional
|
|
|
|
class array:
|
|
"""
|
|
Create array with elements of given type. Initial contents of the
|
|
array are given by *iterable*. If it is not provided, an empty
|
|
array is created.
|
|
"""
|
|
|
|
def extend(self, iterable) -> Incomplete:
|
|
"""
|
|
Append new elements as contained in *iterable* to the end of
|
|
array, growing it.
|
|
"""
|
|
...
|
|
def append(self, val) -> Incomplete:
|
|
"""
|
|
Append new element *val* to the end of array, growing it.
|
|
"""
|
|
...
|
|
def __init__(self, typecode, iterable: Optional[Any] = None) -> None: ...
|