| 74 | * Vector with standard manipulation functions |
| 75 | */ |
| 76 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected