This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/stubs/internal/Subview.php

19 lines
283 B
PHP

<?php
namespace Arma\Internal;
/**
* Interface of object (Mat, Col, Row, SpMat) subview.
*
* @package Arma\Internal
*/
interface Subview
{
/**
* Returns the parent object referenced by current subview.
*
* @return static
*/
function getParent();
}