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/NonResizable.php
2019-06-12 11:06:18 +08:00

19 lines
259 B
PHP

<?php
namespace Arma\Internal;
/**
* Interface for non-resizable container objects.
*
* @package Arma\Internal
*/
interface NonResizable
{
/**
* Set the elements of an object to zero.
*
* @return $this
*/
function zeros();
}