-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_Collections_IndexedItem_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
6 revisions
Represents an element associated with its index in a sequence.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public struct IndexedItem<T> : IEquatable<IndexedItem<T>>
VB
Public Structure IndexedItem(Of T)
Implements IEquatable(Of IndexedItem(Of T))
F#
[<SealedAttribute>]
type IndexedItem<'T> =
struct
interface IEquatable<IndexedItem<'T>>
end
- T
- [Missing documentation for "T:CodeJam.Collections.IndexedItem`1"]
Name | Description | |
---|---|---|
IndexedItem(T) | Initializes a new instance of the IndexedItem(T). |
Name | Description | |
---|---|---|
Index | Gets the index of the element in a sequence. | |
IsFirst | Determines if the value is first in a sequence. | |
IsLast | Determines if the value is last in a sequence. | |
Item | Gets the value of the element. |
Name | Description | |
---|---|---|
Equals(Object) | Indicates whether this instance and a specified object are equal. (Overrides ValueType.Equals(Object).) | |
Equals(IndexedItem(T)) | Indicates whether the current object is equal to another object of the same type. | |
GetHashCode | Returns the hash code for this instance. (Overrides ValueType.GetHashCode().) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType.) |
Name | Description | |
---|---|---|
Equality | Operator == | |
Inequality | Operator != |