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

<?php
namespace Arma\Internal;
use Arma\MapVal;
/**
* Interface for vectors with a Dense Layout (Row and Col).
*
* @package Arma\Internal
*/
interface DenseVector extends Dense, Vector
{
/// Subview
/**
* {@inheritdoc}
*
* @param int $idx
* @return MapVal
*/
function __invoke($idx);
/**
* {@inheritdoc}
*
* @param int $idx
* @return MapVal
*/
function at($idx);
}