| 
            
              RandomTTransposeCompute Method
             | 
          
        
        
            Transposes order of values in array.
            
        
        Namespace: GrafanaAdapters.Functions.BuiltInAssembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.257-beta
Syntaxprotected abstract T TransposeCompute(
	T currentValue,
	T[] values,
	int index
)
Protected MustOverride Function TransposeCompute ( 
	currentValue As T,
	values As T(),
	index As Integer
) As T
protected:
virtual T TransposeCompute(
	T currentValue, 
	array<T>^ values, 
	int index
) abstract
abstract TransposeCompute : 
        currentValue : 'T * 
        values : 'T[] * 
        index : int -> 'T function TransposeCompute(currentValue, values, index);
 View SourceParameters
- currentValue  T
 - Source value.
 - values  T
 - Array of values.
 - index  Int32
 - Index of current value.
 
Return Value
TThe transposed value.
See Also