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

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

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