NumPHP\Core\NumArray::__construct PHP Метод

__construct() публичный Метод

Creates an new NumArray
С версии: 1.0.0
public __construct ( mixed $data )
$data mixed given data
    public function __construct($data)
    {
        $this->data = $data;
        $this->shape = Shape::getShape($data);
    }