Uniform.Int64 Struct
A uniform distribution of type System.Int64.
Namespace
RandN.Distributions
Containing Type
Uniform
Interfaces
Base Types
  • object
  • ValueType
Uniform.Int64
ValueType
object
IPortableDistribution<long>
IDistribution<long>

Syntax

public readonly struct Uniform.Int64 : ValueType, IPortableDistribution<long>, IDistribution<long>

Methods

NameReturn ValueSummary
Create(long, long)Uniform.Int64
Creates a Uniform.Int64 with an exclusive upper bound. Should not be used directly; instead, use New(long, long).
static
CreateInclusive(long, long)Uniform.Int64
Creates a Uniform.Int64 with an exclusive lower bound. Should not be used directly; instead, use NewInclusive(long, long).
static
Sample<TRng>(TRng)long
Samples a value from rng, blocking until a suitable value is returned.
TrySample<TRng>(TRng, long)bool
Attempts to sample a value from rng once, returning false if the value returned is not suitable.