Click or drag to resize

IIntGenerator Interface

Note: This API is now obsolete.

A generator that generates integers. IIntGenerators are often used to generate random elements from lists or arrays, where the ints generated are used to index into the list or array.

Namespace:  Gamelogic.Extensions.Obsolete
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
[VersionAttribute(1, 4, 0)]
[ObsoleteAttribute("Use the static functions in Gamelogic.Generators.Generator instead.")]
public interface IIntGenerator : IGenerator<int>, 
	IGenerator

The IIntGenerator type exposes the following members.

Methods
Extension Methods
  NameDescription
Public Extension MethodAggregateWindowInt32, U (Defined by GeneratorExtensions.)
Public Extension MethodBufferInt32 (Defined by GeneratorExtensions.)
Public Extension MethodCastT (Defined by GeneratorExtensions.)
Public Extension MethodNextInt32
Gets the next n elements from the generator.
(Defined by GeneratorExtensions.)
Public Extension MethodOfTypeT (Defined by GeneratorExtensions.)
Public Extension MethodRepeatWithProbabilityInt32 (Defined by GeneratorExtensions.)
Public Extension MethodWhereInt32 (Defined by GeneratorExtensions.)
Public Extension MethodWhereBufferInt32 (Defined by GeneratorExtensions.)
Public Extension MethodWindowInt32 (Defined by GeneratorExtensions.)
Top
See Also