HH\ImmVector::get
Returns the value at the specified key in the current ImmVector
public function get(
int $key,
): ?Tv;
If the key is not present, null
is returned. If you would rather have an
exception thrown when a key is not present, then use at()
.
Parameters
int $key
Returns
?Tv
- The value at the specified key; ornull
if the key does not exist.
Examples
See [Vector::get
](</hack/reference/class/Vector/get/#examples>) for usage examples.