Prado\Collections\TStack::__construct PHP Метод

__construct() публичный Метод

Initializes the stack with an array or an iterable object.
public __construct ( $data = null )
    public function __construct($data = null)
    {
        if ($data !== null) {
            $this->copyFrom($data);
        }
    }