Welcome to Python-flavored Magnum! Please note that, while already being rather stable, this functionality is still considered experimental and some APIs might get changed without preserving full backwards compatibility.

corrade.containers.MutableStridedBitArrayView2D class

Mutable two-dimensional bit array view with stride information

See StridedBitArrayView1D and MutableStridedBitArrayView1D for more information.

Methods

def broadcasted(self, dimension: int, size: int) -> MutableStridedBitArrayView2D
Broadcast a dimension
def expanded(self, dimension: int, size: typing.Tuple[int, int]) -> MutableStridedBitArrayView3D
Expand a dimension
def expanded(self, dimension: int, size: typing.Tuple[int, int, int]) -> MutableStridedBitArrayView4D
Expand a dimension
def flipped(self, dimension: int) -> MutableStridedBitArrayView2D
Flip a dimension
def transposed(self, a: int, b: int) -> MutableStridedBitArrayView2D
Transpose two dimensions

Special methods

def __getitem__(self, slice: slice) -> MutableStridedBitArrayView2D
Slice the view
def __getitem__(self, i: int) -> MutableStridedBitArrayView1D
Sub-view at given position
def __getitem__(self, i: typing.Tuple[int, int]) -> bool
Bit at given position
def __getitem__(self, slice: typing.Tuple[slice, slice]) -> MutableStridedBitArrayView2D
Slice the view
def __init__(self, /) -> None
Default constructor
def __len__(self, /) -> int
View size in the top-level dimension
def __setitem__(self, i: typing.Tuple[int, int], value: bool) -> None
Set a bit at given position

Properties

dimensions: int get
Dimension count
offset: int get
Bit offset
owner: object get
Memory owner object
size: typing.Tuple[int, int] get
View size in each dimension
stride: typing.Tuple[int, int] get
View stride in each dimension

Method documentation

def corrade.containers.MutableStridedBitArrayView2D.broadcasted(self, dimension: int, size: int) -> MutableStridedBitArrayView2D

Broadcast a dimension

Exceptions
IndexError If dimension is not 0 or 1

def corrade.containers.MutableStridedBitArrayView2D.expanded(self, dimension: int, size: typing.Tuple[int, int]) -> MutableStridedBitArrayView3D

Expand a dimension

Exceptions
IndexError If dimension is not 0 or 1
ValueError If product of size is not equal to size in dimension

def corrade.containers.MutableStridedBitArrayView2D.expanded(self, dimension: int, size: typing.Tuple[int, int, int]) -> MutableStridedBitArrayView4D

Expand a dimension

Exceptions
IndexError If dimension is not 0 or 1
ValueError If product of size is not equal to size in dimension

def corrade.containers.MutableStridedBitArrayView2D.flipped(self, dimension: int) -> MutableStridedBitArrayView2D

Flip a dimension

Exceptions
IndexError If dimension is not 0 or 1

def corrade.containers.MutableStridedBitArrayView2D.transposed(self, a: int, b: int) -> MutableStridedBitArrayView2D

Transpose two dimensions

Exceptions
IndexError If a or b is not 0 or 1 or if they’re the same