- 
        Couldn't load subscription status. 
- Fork 35
M_CodeJam_Collections_IndexedItem_1__ctor
        andrewvk edited this page Jul 1, 2016 
        ·
        5 revisions
      
    Initializes a new instance of the IndexedItem(T).
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
public IndexedItem(
	T item,
	int index,
	bool isFirst,
	bool isLast
)VB
Public Sub New ( 
	item As T,
	index As Integer,
	isFirst As Boolean,
	isLast As Boolean
)F#
new : 
        item : 'T * 
        index : int * 
        isFirst : bool * 
        isLast : bool -> IndexedItem
- item
- Type: T
 The value of the element.
- index
- Type: System.Int32
 The index of the element in a sequence.
- isFirst
- Type: System.Boolean
 A value indicating whether this instance is first.
- isLast
- Type: System.Boolean
 A value indicating whether this instance is last.