Class LurchTable<TKey, TValue>.ValueCollection
Provides the collection of Values for the LurchTable
Inheritance
System.Object
LurchTable<TKey, TValue>.ValueCollection
Implements
System.Collections.Generic.ICollection<TValue>
System.Collections.Generic.IEnumerable<TValue>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Support
Assembly: Lucene.Net.dll
Syntax
public class ValueCollection : ICollection<TValue>, IEnumerable<TValue>, IEnumerable
Properties
| Improve this Doc View SourceCount
Gets the number of elements contained in the System.Collections.Generic.ICollection<T>.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceContains(TValue)
Determines whether the System.Collections.Generic.ICollection<T> contains a specific value.
Declaration
public bool Contains(TValue value)
Parameters
Type | Name | Description |
---|---|---|
TValue | value |
Returns
Type | Description |
---|---|
System.Boolean |
CopyTo(TValue[], Int32)
Copies the elements of the System.Collections.Generic.ICollection<T> to an System.Array, starting at a particular System.Array index.
Declaration
public void CopyTo(TValue[] array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
TValue[] | array | |
System.Int32 | arrayIndex |
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public LurchTable<TKey, TValue>.ValueCollection.Enumerator GetEnumerator()
Returns
Type | Description |
---|---|
LurchTable.ValueCollection.Enumerator<> |
Explicit Interface Implementations
| Improve this Doc View SourceICollection<TValue>.Add(TValue)
Declaration
[Obsolete]
void ICollection<TValue>.Add(TValue item)
Parameters
Type | Name | Description |
---|---|---|
TValue | item |
ICollection<TValue>.Clear()
Declaration
[Obsolete]
void ICollection<TValue>.Clear()
ICollection<TValue>.IsReadOnly
Declaration
[Obsolete]
bool ICollection<TValue>.IsReadOnly { get; }
Returns
Type | Description |
---|---|
System.Boolean |
ICollection<TValue>.Remove(TValue)
Declaration
[Obsolete]
bool ICollection<TValue>.Remove(TValue item)
Parameters
Type | Name | Description |
---|---|---|
TValue | item |
Returns
Type | Description |
---|---|
System.Boolean |
IEnumerable<TValue>.GetEnumerator()
Declaration
[Obsolete]
IEnumerator<TValue> IEnumerable<TValue>.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<TValue> |
IEnumerable.GetEnumerator()
Declaration
[Obsolete]
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable