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/DiagView.php
2019-03-18 22:49:42 +08:00

14 lines
186 B
PHP

<?php
namespace Arma;
/**
* Interface for diagonal subview of dense matrix.
*
* @package Arma\Internal
*/
abstract class DiagView implements Internal\Dense, Internal\Diagonal
{
}