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/Sparse.php

14 lines
198 B
PHP
Raw Normal View History

2019-03-07 15:19:47 +00:00
<?php
namespace Arma\Internal;
2019-03-13 15:19:05 +00:00
/**
2019-03-27 08:29:00 +00:00
* Interface for objects whose elements are stored in compressed sparse column (CSC) format.
2019-03-13 15:19:05 +00:00
*
* @package Arma\Internal
*/
2019-03-18 14:49:42 +00:00
interface Sparse extends Base
2019-03-07 15:19:47 +00:00
{
}