Exemplo n.º 1
0
 public static IPolyrand ToPolyrand(this IStepwiseSource <ulong> src)
 => new Polyrand(src);
Exemplo n.º 2
0
 internal Polyrand(IStepwiseSource <ulong> Points)
 {
     this.Points = Points;
     this.Nav    = some(Points as IRandomNav);
 }