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

32 lines
444 B
PHP
Raw Normal View History

2019-03-12 10:14:12 +00:00
<?php
namespace Arma\Internal;
2019-04-04 08:07:37 +00:00
use Arma\MapVal;
2019-03-13 15:19:05 +00:00
/**
2019-03-27 08:29:00 +00:00
* Interface for vectors with a Dense Layout (Row and Col).
*
2019-03-13 15:19:05 +00:00
* @package Arma\Internal
*/
2019-03-12 10:14:12 +00:00
interface DenseVector extends Dense, Vector
{
2019-03-18 14:49:42 +00:00
/// Subview
2019-03-12 10:14:12 +00:00
2019-03-27 08:29:00 +00:00
/**
* {@inheritdoc}
*
* @param int $idx
2019-04-04 08:07:37 +00:00
* @return MapVal
2019-03-27 08:29:00 +00:00
*/
function __invoke($idx);
2019-03-12 10:14:12 +00:00
/**
2019-03-18 14:49:42 +00:00
* {@inheritdoc}
2019-03-12 10:14:12 +00:00
*
2019-03-18 14:49:42 +00:00
* @param int $idx
2019-04-04 08:07:37 +00:00
* @return MapVal
2019-03-12 10:14:12 +00:00
*/
2019-03-18 14:49:42 +00:00
function at($idx);
2019-03-12 10:14:12 +00:00
}