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