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. If is returned, the value of result is unspecified.

Extension Methods

NameValueSummary
Select<long, TResult>(Func<long, TResult>)IDistribution<TResult>
Transforms a distribution by mapping its values using the selector provided. This method implements the "map" operator from functional programming principles.
SelectMany<long, TIntermediate, TResult>(Func<long, IDistribution<TIntermediate>>, Func<long, TIntermediate, TResult>)IDistribution<TResult>
Transforms a distribution by mapping values using the selector provided to produce a new distribution, which is then sampled from.
SelectMany<long, TResult>(Func<long, IDistribution<TResult>>)IDistribution<TResult>
Transforms a distribution by mapping values using the selector provided to produce a new distribution, which is then sampled from. This method implements the "bind" operator from functional programming principles.