definition = $definition; } function isList(?ListSchema &$list=null): bool { $list = $this; return true; } function newValue(?Value &$destv=null, &$dest=null, $destKey=null): ListValue { if ($destv instanceof ListValue) return $destv->reset($dest, $destKey); else return ($destv = new ListValue($this, $dest, $destKey)); } }