Operator implicit operator
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(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(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.
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(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<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.