Beispiel #1
0
 public static Dataset <T> Alloc <T>(int dim, int count)
     where T : unmanaged
 => Dataset <T> .Alloc(dim, count);
Beispiel #2
0
 public static Dataset <T> Load <T>(T[] src, int dim = 1)
     where T : unmanaged
 => Dataset <T> .Load(src, dim);