ImmutableListT(Int32, FuncT, T) Constructor
Namespace: SnapDB.ImmutablesAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public ImmutableList(
int capacity,
Func<T, T>? formatter = null
)
Public Sub New (
capacity As Integer,
Optional formatter As Func(Of T, T) = Nothing
)
public:
ImmutableList(
int capacity,
Func<T, T>^ formatter = nullptr
)
SnapDB.Immutables.ImmutableList = function(capacity, formatter);
Parameters
- capacity Int32
- The integer capacity that the list can hold.
- formatter FuncT, T (Optional)
- An optional formatter for the items in the list of type T.