There was an error while loading. Please reload this page.
Creates infinite sequence of random int numbers;
Namespace: CodeJam.CollectionsAssembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static IEnumerable<int> Random( int maxValue = 2147483647 )
VB
Public Shared Function Random ( Optional maxValue As Integer = 2147483647 ) As IEnumerable(Of Integer)
F#
static member Random : ?maxValue : int (* Defaults: let _maxValue = defaultArg maxValue 2147483647 *) -> IEnumerable<int>
Type: IEnumerable(Int32)Infinite random sequence.
Sequence ClassRandom OverloadCodeJam.Collections Namespace