MutableVector interface

Vector with standard manipulation functions

Signature

  1. export interface MutableVector<T = any> extends ReadWriteVector<T>

Import

  1. import { MutableVector } from '@grafana/data';

Properties

PropertyTypeDescription
add(value: T) => voidAdds the value to the vector
reverse() => voidmodifies the vector so it is now the opposite order

add property

Adds the value to the vector

Signature

  1. add: (value: T) => void;

reverse property

modifies the vector so it is now the opposite order

Signature

  1. reverse: () => void;