Beispiel #1
0
 public StructPooledList(CL_ClearMode clearMode, ArrayPool <T>?customPool)
     : this()
 {
     clearOnFree = ShouldClear(clearMode);
     pool        = customPool ?? ArrayPool <T> .Shared;
     items       = emptyArray;
 }
Beispiel #2
0
 public StructPooledList(CL_ClearMode clearMode)
     : this(clearMode, null)
 {
 }