public ListInterface::get($index)
Returns the item at the specified position in this list.
Parameters
int $index: Index of the item to return.
Return value
\Drupal\Core\TypedData\TypedDataInterface|null The item at the specified position in this list, or NULL if no item exists at that position.
Throws
\Drupal\Core\TypedData\Exception\MissingDataException If the complex data structure is unset and no item can be created.
File
- core/lib/Drupal/Core/TypedData/ListInterface.php, line 57
Class
- ListInterface
- Interface for a list of typed data.
Namespace
Drupal\Core\TypedData
Code
public function get($index);
Please login to continue.