mirror of https://github.com/grafana/grafana.git
106 lines
2.2 KiB
Markdown
106 lines
2.2 KiB
Markdown
|
+++
|
||
|
# -----------------------------------------------------------------------
|
||
|
# Do not edit this file. It is automatically generated by API Documenter.
|
||
|
# -----------------------------------------------------------------------
|
||
|
title = "BinaryOperationVector"
|
||
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
||
|
type = "docs"
|
||
|
+++
|
||
|
|
||
|
## BinaryOperationVector class
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
export declare class BinaryOperationVector implements Vector<number>
|
||
|
```
|
||
|
<b>Import</b>
|
||
|
|
||
|
```typescript
|
||
|
import { BinaryOperationVector } from '@grafana/data';
|
||
|
```
|
||
|
<b>Constructors</b>
|
||
|
|
||
|
| Constructor | Modifiers | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [constructor(left, right, operation)](#constructor-leftrightoperation) | | Constructs a new instance of the <code>BinaryOperationVector</code> class |
|
||
|
|
||
|
<b>Properties</b>
|
||
|
|
||
|
| Property | Modifiers | Type | Description |
|
||
|
| --- | --- | --- | --- |
|
||
|
| [length](#length-property) | | <code>number</code> | |
|
||
|
|
||
|
<b>Methods</b>
|
||
|
|
||
|
| Method | Modifiers | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [get(index)](#get-method) | | |
|
||
|
| [toArray()](#toarray-method) | | |
|
||
|
| [toJSON()](#tojson-method) | | |
|
||
|
|
||
|
### constructor(left, right, operation)
|
||
|
|
||
|
Constructs a new instance of the `BinaryOperationVector` class
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
constructor(left: Vector<number>, right: Vector<number>, operation: BinaryOperation);
|
||
|
```
|
||
|
<b>Parameters</b>
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| left | <code>Vector<number></code> | |
|
||
|
| right | <code>Vector<number></code> | |
|
||
|
| operation | <code>BinaryOperation</code> | |
|
||
|
|
||
|
### length property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
get length(): number;
|
||
|
```
|
||
|
|
||
|
### get method
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
get(index: number): number;
|
||
|
```
|
||
|
<b>Parameters</b>
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| index | <code>number</code> | |
|
||
|
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
`number`
|
||
|
|
||
|
### toArray method
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
toArray(): number[];
|
||
|
```
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
`number[]`
|
||
|
|
||
|
### toJSON method
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
toJSON(): number[];
|
||
|
```
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
`number[]`
|
||
|
|