Click or drag to resize

Gamelogic.Extensions.Obsolete Namespace

 
Classes
  ClassDescription
Public classBatchGeneratorT Obsolete.
Generates batches of items. The same batch is returned each time. Bath generators are more useful when used in conjunction with another generator that processes the batches, such as ShuffledBatchGenerator.
Public classBufferT Obsolete.
A buffer is a generator that buffers a fixed number of elements at a time from another generator before returning them.
Public classBufferFilterGeneratorT Obsolete.
A buffer generator that will only generate items that will ensure the buffer can pass the predicate.
Public classFilterGeneratorT Obsolete.
A generator that only generates elements that passes the predicate.
Public classFrequencyElementGeneratorT Obsolete.
Generates items at the same frequencies as they occur in a set from which this generator is constructed.
Public classFrequencyFloatGenerator Obsolete.
A generator that generates floats given an arbitrary distribution.
Public classFrequencyIntGenerator Obsolete.
A generator that generates integers given an arbitrary distribution.
Public classGeneratorExtensions Obsolete.
Extension methods defined on generators.
Public classGLMathf
Public classListSelectorGeneratorT Obsolete.
Generates items from a list using an index generator.
Public classMarkovChain2IntGenerator Obsolete.
Generates elements with frequencies that are different for each element, and also depends on the previously generated elements.
Public classRandomElementGeneratorT Obsolete.
Generates elements chosen randomly (with uniform distribution).
Public classRepeatGeneratorT Obsolete.
A generator that generates the same element each time. This is useful in situations where a generator is expected, but a constant is desired (for example, when constructing compound generators).
Public classRepeatSequenceGeneratorT Obsolete.
A generator that repeats a given sequence.
Public classResponseCurveGeneratorT Obsolete.
A generator that uses a response curve to generate elements.
Public classShuffledBatchGeneratorT Obsolete.
Returns elements from a batch generator, but shuffles each batch before doing so.
Public classTransformGeneratorT, U Obsolete.
A generator that transforms generated elements with a given transformation function.
Public classUniformFloatGenerator Obsolete.
A generator that generates floating values between 0 and 1 with a uniform distribution.
Public classUniformIntGenerator Obsolete.
A generator that generates int values with a uniform distribution.
Interfaces
  InterfaceDescription
Public interfaceIGenerator Obsolete.
A type less Generator that is the base of all generators.
Public interfaceIGeneratorT 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.
Public interfaceIIntGenerator 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.