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