Namespace: ANDREICSLIB.HelpersAssembly: ANDREICSLIB (in ANDREICSLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void Replace<T>(
ref T[][] matrix,
T test,
T set,
MatrixOpsCompareDel<T> compare = null
)
Public Shared Sub Replace(Of T) (
ByRef matrix As T()(),
test As T,
set As T,
Optional compare As MatrixOpsCompareDel(Of T) = Nothing
)
public:
generic<typename T>
static void Replace(
array<array<T>^>^% matrix,
T test,
T set,
MatrixOpsCompareDel<T>^ compare = nullptr
)
static member Replace :
matrix : 'T[][] byref *
test : 'T *
set : 'T *
?compare : MatrixOpsCompareDel<'T>
(* Defaults:
let _compare = defaultArg compare null
*)
-> unit
Parameters
- matrix
- Type: T
- test
- Type: T
- set
- Type: T
- compare (Optional)
- Type: ANDREICSLIB.HelpersMatrixOpsCompareDelT
Type Parameters
- T
See Also