-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_Collections_Sequence
andrewvk edited this page Nov 5, 2016
·
3 revisions
Contains methods for sequence creation.
System.Object
CodeJam.Collections.Sequence
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
public class Sequence
VB
Public Class Sequence
F#
type Sequence = class end
The Sequence type exposes the following members.
Name | Description | |
---|---|---|
Sequence | Initializes a new instance of the Sequence class |
Name | Description | |
---|---|---|
Create(T)(T, Func(T, T)) | Creates a sequence from start value and next element factory. | |
Create(T)(T, Func(T, Boolean), Func(T, T)) | Creates a sequence from start value and next element factory. | |
Create(T, TResult)(T, Func(T, T), Func(T, TResult)) | Creates a sequence from start value and next element factory. | |
Create(T, TResult)(T, Func(T, Boolean), Func(T, T), Func(T, TResult)) | Creates a sequence from start value and next element factory. | |
CreateSingle(T)(Func(T)) | Creates a single element sequence. | |
CreateSingle(T)(T) | Creates a single element sequence. | |
CreateWhileNotNull(T)(T, Func(T, T)) | Creates a sequence from start value and next element factory till factory returns null. | |
CreateWhileNotNull(T, TResult)(T, Func(T, T), Func(T, TResult)) | Creates a sequence from start value and next element factory till factory returns null. | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |