module documentation

Wrapper class around the ndarray object for the array API standard.

The array API standard defines some behaviors differently than ndarray, in particular, type promotion rules are different (the standard has no value-based casting). The standard also specifies a more limited subset of array methods and functionalities than are implemented on ndarray. Since the goal of the array_api namespace is to be a minimal implementation of the array API standard, we need to define a separate wrapper class for the array_api namespace.

The standard compliant class is only a wrapper class. It is not a subclass of ndarray.