Click or drag to resize

IGeneratorT Interface

Note: This API is now obsolete.

Classes that implement this interface can produce a new element of the given type. Generators differ from enumerables in that they generally are infinite, and don't have a "start" position.

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

Type Parameters

T

The IGeneratorT type exposes the following members.

Methods
  NameDescription
Public methodNext
Generates the next element.
Top
Extension Methods
  NameDescription
Public Extension MethodAggregateWindowT, U (Defined by GeneratorExtensions.)
Public Extension MethodBufferT (Defined by GeneratorExtensions.)
Public Extension MethodCastT (Defined by GeneratorExtensions.)
Public Extension MethodNextT
Gets the next n elements from the generator.
(Defined by GeneratorExtensions.)
Public Extension MethodOfTypeT (Defined by GeneratorExtensions.)
Public Extension MethodRepeatWithProbabilityT (Defined by GeneratorExtensions.)
Public Extension MethodWhereT (Defined by GeneratorExtensions.)
Public Extension MethodWhereBufferT (Defined by GeneratorExtensions.)
Public Extension MethodWindowT (Defined by GeneratorExtensions.)
Top
See Also