Gamelogic.Extensions.Obsolete Namespace |
| Class | Description | |
|---|---|---|
| BatchGeneratorT | 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.
| |
| BufferT | Obsolete.
A buffer is a generator that buffers a fixed number of elements at a time from another
generator before returning them.
| |
| BufferFilterGeneratorT | Obsolete.
A buffer generator that will only generate items that will ensure the buffer can pass the predicate.
| |
| FilterGeneratorT | Obsolete.
A generator that only generates elements that passes the predicate.
| |
| FrequencyElementGeneratorT | Obsolete.
Generates items at the same frequencies as they
occur in a set from which this generator is constructed.
| |
| FrequencyFloatGenerator | Obsolete.
A generator that generates floats given an arbitrary distribution.
| |
| FrequencyIntGenerator | Obsolete.
A generator that generates integers given an arbitrary distribution.
| |
| GeneratorExtensions | Obsolete.
Extension methods defined on generators.
| |
| GLMathf | ||
| ListSelectorGeneratorT | Obsolete.
Generates items from a list using an index generator.
| |
| MarkovChain2IntGenerator | Obsolete.
Generates elements with frequencies that are different for each element,
and also depends on the previously generated elements.
| |
| RandomElementGeneratorT | Obsolete.
Generates elements chosen randomly (with uniform distribution).
| |
| RepeatGeneratorT | 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).
| |
| RepeatSequenceGeneratorT | Obsolete.
A generator that repeats a given sequence.
| |
| ResponseCurveGeneratorT | Obsolete.
A generator that uses a response curve to generate elements.
| |
| ShuffledBatchGeneratorT | Obsolete.
Returns elements from a batch generator, but shuffles each batch before doing so.
| |
| TransformGeneratorT, U | Obsolete.
A generator that transforms generated elements with a given transformation function.
| |
| UniformFloatGenerator | Obsolete.
A generator that generates floating values between 0 and 1 with a uniform distribution.
| |
| UniformIntGenerator | Obsolete.
A generator that generates int values with a uniform distribution.
|
| Interface | Description | |
|---|---|---|
| IGenerator | Obsolete.
A type less Generator that is the base of all generators.
| |
| IGeneratorT | 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.
| |
| IIntGenerator | 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.
|