operator [] method

  1. @override
PsDataType operator [](
  1. int index
)
override

Gets the item at the specified index.

index The zero-based index of the item to retrieve.

Returns the PackStream data type at the specified index.

Implementation

@override
PsDataType operator [](int index) => _values[index];