IntCollection Class

Definition

Defines a collection of integer values. Typically, the collection contains job or node identifiers.

[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("46fe2eba-f456-4284-a3bd-d3fdf6521012")]
public class IntCollection : Microsoft.Hpc.Scheduler.SchedulerCollection<int>, Microsoft.Hpc.Scheduler.IIntCollection, System.Collections.Generic.ICollection<int>, System.Collections.Generic.IEnumerable<int>, System.Collections.ICollection
type IntCollection = class
    inherit SchedulerCollection<int>
    interface IIntCollection
    interface ISchedulerCollection
    interface ICollection
    interface IEnumerable
    interface ICollection<int>
    interface seq<int>
Public Class IntCollection
Inherits SchedulerCollection(Of Integer)
Implements ICollection, ICollection(Of Integer), IEnumerable(Of Integer), IIntCollection
Inheritance
Attributes
Implements

Constructors

IntCollection()

Initializes a new instance of this class.

IntCollection(IEnumerable<Int32>)

Initializes a new instance of this class using the specified collection.

Properties

Count

Retrieves a count of the number of items in the collection.

(Inherited from SchedulerCollection<T>)
IsReadOnly

Determines whether the collection is read-only.

(Inherited from SchedulerCollection<T>)
IsSynchronized

Determines whether access to the collection is synchronized.

(Inherited from SchedulerCollection<T>)
Item[Int32]

Retrieves the specified item from the collection.

(Inherited from SchedulerCollection<T>)
SyncRoot

Retrieves an object that can be used to synchronize access to the collection.

(Inherited from SchedulerCollection<T>)

Methods

Add(T)

Adds an item to the collection.

(Inherited from SchedulerCollection<T>)
Clear()

Removes all items from the collection.

(Inherited from SchedulerCollection<T>)
Contains(T)

Determines whether the collection contains the specified item.

(Inherited from SchedulerCollection<T>)
CopyTo(Array, Int32)

Copies items from the collection to an array at the specified index.

(Inherited from SchedulerCollection<T>)
CopyTo(T[], Int32)

Copies items from the collection to an array at the specified index.

(Inherited from SchedulerCollection<T>)
Remove(T)

Removes the first occurrence of the specified item from the collection.

(Inherited from SchedulerCollection<T>)

Explicit Interface Implementations

IEnumerable.GetEnumerator() (Inherited from SchedulerCollection<T>)
IEnumerable<T>.GetEnumerator() (Inherited from SchedulerCollection<T>)
IIntCollection.Add(Int32)
IIntCollection.Clear()
IIntCollection.Contains(Int32)
IIntCollection.Count
IIntCollection.GetEnumerator()
IIntCollection.Item[Int32]
IIntCollection.Remove(Int32)
ISchedulerCollection.Add(Object) (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Contains(Object) (Inherited from SchedulerCollection<T>)
ISchedulerCollection.GetEnumerator() (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Item[Int32] (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Remove(Object) (Inherited from SchedulerCollection<T>)

Applies to