MCPcopy
hub / github.com/deepops-ai/deepops / MutableVector

Interface MutableVector

ui/src/types/seriesData.ts:76–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74 * Vector with standard manipulation functions
75 */
76export interface MutableVector<T = any> extends ReadWriteVector<T> {
77 /**
78 * Adds the value to the vector
79 */
80 add: (value: T) => void;
81
82 /**
83 * modifies the vector so it is now the opposite order
84 */
85 reverse: () => void;
86}
87
88
89

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected