Table of Contents

Class QueryVector

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Vector search query vector.

public sealed class QueryVector
Inheritance
QueryVector
Inherited Members

Constructors

QueryVector(ReadOnlyMemory<double>)

Initializes a new instance of the QueryVector class.

public QueryVector(ReadOnlyMemory<double> readOnlyMemory)

Parameters

readOnlyMemory ReadOnlyMemory<double>

The memory.

QueryVector(ReadOnlyMemory<int>)

Initializes a new instance of the QueryVector class.

public QueryVector(ReadOnlyMemory<int> readOnlyMemory)

Parameters

readOnlyMemory ReadOnlyMemory<int>

The memory.

QueryVector(ReadOnlyMemory<float>)

Initializes a new instance of the QueryVector class.

public QueryVector(ReadOnlyMemory<float> readOnlyMemory)

Parameters

readOnlyMemory ReadOnlyMemory<float>

The memory.

Operators

implicit operator QueryVector(double[])

Performs an implicit conversion from double[] to QueryVector.

public static implicit operator QueryVector(double[] array)

Parameters

array double[]

The array.

Returns

QueryVector

The result of the conversion.

implicit operator QueryVector(int[])

Performs an implicit conversion from int[] to QueryVector.

public static implicit operator QueryVector(int[] array)

Parameters

array int[]

The array.

Returns

QueryVector

The result of the conversion.

implicit operator QueryVector(ReadOnlyMemory<double>)

Performs an implicit conversion from a of ReadOnlyMemory<T> to QueryVector.

public static implicit operator QueryVector(ReadOnlyMemory<double> readOnlyMemory)

Parameters

readOnlyMemory ReadOnlyMemory<double>

The readOnlyMemory.

Returns

QueryVector

The result of the conversion.

implicit operator QueryVector(ReadOnlyMemory<int>)

Performs an implicit conversion from a of ReadOnlyMemory<T> to QueryVector.

public static implicit operator QueryVector(ReadOnlyMemory<int> readOnlyMemory)

Parameters

readOnlyMemory ReadOnlyMemory<int>

The readOnlyMemory.

Returns

QueryVector

The result of the conversion.

implicit operator QueryVector(ReadOnlyMemory<float>)

Performs an implicit conversion from a of ReadOnlyMemory<T> to QueryVector.

public static implicit operator QueryVector(ReadOnlyMemory<float> readOnlyMemory)

Parameters

readOnlyMemory ReadOnlyMemory<float>

The readOnlyMemory.

Returns

QueryVector

The result of the conversion.

implicit operator QueryVector(float[])

Performs an implicit conversion from float[] to QueryVector.

public static implicit operator QueryVector(float[] array)

Parameters

array float[]

The array.

Returns

QueryVector

The result of the conversion.