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

27 lines
355 B
PHP
Raw Normal View History

2019-03-18 14:49:42 +00:00
<?php
namespace Arma\Internal;
2019-04-04 08:07:37 +00:00
use Arma\SpMapVal;
2019-03-18 14:49:42 +00:00
interface SparseVector extends Sparse, Vector
{
/// Subview
2019-03-27 08:29:00 +00:00
/**
* {@inheritdoc}
*
* @param int $idx
2019-04-04 08:07:37 +00:00
* @return SpMapVal
2019-03-27 08:29:00 +00:00
*/
function __invoke($idx);
2019-03-18 14:49:42 +00:00
/**
* {@inheritdoc}
*
* @param int $idx
2019-04-04 08:07:37 +00:00
* @return SpMapVal
2019-03-18 14:49:42 +00:00
*/
function at($idx);
}