FunVec3T(T, Opt`1Int32, Opt`1FuncInt32, Int32, Opt`1FuncInt32, Int32, Int32) Constructor
Namespace: Orx.Fun.FunVecAssembly: Orx.Fun.FunVec (in Orx.Fun.FunVec.dll) Version: 1.0.0
public FunVec3(
T constantValue,
Opt<int> length1 = default,
Opt<Func<int, int>> getLength2 = default,
Opt<Func<int, int, int>> getLength3 = default
)
Parameters
- constantValue T
- Constant value that every position of the jagged array will return.
- length1 OptInt32 (Optional)
- Optional length of the jagged array; will default to None (int.MaxValue) when omitted.
- getLength2 OptFuncInt32, Int32 (Optional)
- Optional function (i -> length) to get length of the i-th collection; when omitted will default to None which will yield to a length of int.MaxValue for any index.
- getLength3 OptFuncInt32, Int32, Int32 (Optional)
- Optional function (i,j -> length) to get length of the (i,j)-th collection; when omitted will default to None which will yield to a length of int.MaxValue for any indices.