Operator implicit operator
implicit operator QueryVector(double[])
Performs an implicit conversion from double[] to Query
Parameters
array
double[]The array.
Returns
- Query
Vector The result of the conversion.
implicit operator QueryVector(ReadOnlyMemory<double>)
Performs an implicit conversion from a of ReadOnlyMemory<T> to Query
Parameters
readOnlyMemory
ReadOnly <double>Memory The readOnlyMemory.
Returns
- Query
Vector The result of the conversion.
implicit operator QueryVector(float[])
Performs an implicit conversion from float[] to Query
Parameters
array
float[]The array.
Returns
- Query
Vector The result of the conversion.
implicit operator QueryVector(ReadOnlyMemory<float>)
Performs an implicit conversion from a of ReadOnlyMemory<T> to Query
Parameters
readOnlyMemory
ReadOnly <float>Memory The readOnlyMemory.
Returns
- Query
Vector The result of the conversion.
implicit operator QueryVector(int[])
Performs an implicit conversion from int[] to Query
Parameters
array
int[]The array.
Returns
- Query
Vector The result of the conversion.
implicit operator QueryVector(ReadOnlyMemory<int>)
Performs an implicit conversion from a of ReadOnlyMemory<T> to Query
Parameters
readOnlyMemory
ReadOnly <int>Memory The readOnlyMemory.
Returns
- Query
Vector The result of the conversion.