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.utility module

Utilities

Classes

class Configuration
Parser and writer for configuration files
class ConfigurationGroup
Group of values in a configuration file

Functions

def copy(src: containers.StridedArrayView1D, dst: containers.MutableStridedArrayView1D) -> None
Copy a strided array view to another
def copy(src: containers.StridedArrayView2D, dst: containers.MutableStridedArrayView2D) -> None
Copy a strided array view to another
def copy(src: containers.StridedArrayView3D, dst: containers.MutableStridedArrayView3D) -> None
Copy a strided array view to another
def copy(src: containers.StridedArrayView4D, dst: containers.MutableStridedArrayView4D) -> None
Copy a strided array view to another

Function documentation

def corrade.utility.copy(src: containers.StridedArrayView1D, dst: containers.MutableStridedArrayView1D) -> None

Copy a strided array view to another

Exceptions
AssertionError If src and dst sizes, type sizes or types are different

def corrade.utility.copy(src: containers.StridedArrayView2D, dst: containers.MutableStridedArrayView2D) -> None

Copy a strided array view to another

Exceptions
AssertionError If src and dst sizes, type sizes or types are different

def corrade.utility.copy(src: containers.StridedArrayView3D, dst: containers.MutableStridedArrayView3D) -> None

Copy a strided array view to another

Exceptions
AssertionError If src and dst sizes, type sizes or types are different

def corrade.utility.copy(src: containers.StridedArrayView4D, dst: containers.MutableStridedArrayView4D) -> None

Copy a strided array view to another

Exceptions
AssertionError If src and dst sizes, type sizes or types are different