ITree<TKey,TValue> Interface

Definition

Defines the interface of the STL/CLR hash_map, hash_multimap, hash_set, and hash_multiset objects.

generic <typename TKey, typename TValue>
public interface class ITree : ICloneable, Microsoft::VisualC::StlClr::Generic::IBidirectionalContainer<TValue>, System::Collections::ICollection
public interface ITree<TKey,TValue> : ICloneable, Microsoft.VisualC.StlClr.Generic.IBidirectionalContainer<TValue>, System.Collections.ICollection
type ITree<'Key, 'Value> = interface
    interface IBidirectionalContainer<'Value>
    interface ICloneable
    interface ICollection
    interface IEnumerable
Public Interface ITree(Of TKey, TValue)
Implements IBidirectionalContainer(Of TValue), ICloneable, ICollection

Type Parameters

TKey

The type of the key component of an element in the controlled sequence.

TValue

The type of the value component of an element in the controlled sequence.

Implements

Remarks

Some methods, especially operators, declare a type for a parameter but do not specify a parameter name. Such a parameter is known as an unnamed parameter. In the documentation for these methods, the A_0 placeholder represents the unnamed parameter.

For more information, see hash_map (STL/CLR), hash_multimap (STL/CLR), hash_set (STL/CLR), and hash_multiset (STL/CLR).

Properties

Count

Gets the number of elements contained in the ICollection.

(Inherited from ICollection)
IsSynchronized

Gets a value indicating whether access to the ICollection is synchronized (thread safe).

(Inherited from ICollection)
SyncRoot

Gets an object that can be used to synchronize access to the ICollection.

(Inherited from ICollection)

Methods

begin(ContainerBidirectionalIterator<TValue>)

Designates the beginning of the controlled sequence.

clear()

Removes all elements from the container.

Clone()

Creates a new object that is a copy of the current instance.

(Inherited from ICloneable)
CopyTo(Array, Int32)

Copies the elements of the ICollection to an Array, starting at a particular Array index.

(Inherited from ICollection)
count(TKey)

Finds the number of elements that match a specified key.

empty()

Tests whether no elements are present in the container.

end(ContainerBidirectionalIterator<TValue>)

Designates the end of the controlled sequence.

equal_range(GenericPair<ContainerBidirectionalIterator<TValue>,ContainerBidirectionalIterator<TValue>>, TKey)

Finds the range that matches a specified key.

erase(ContainerBidirectionalIterator<TValue>, ContainerBidirectionalIterator<TValue>)

Removes from the container the element that is specified by the given iterator.

erase(ContainerBidirectionalIterator<TValue>, ContainerBidirectionalIterator<TValue>, ContainerBidirectionalIterator<TValue>)

Removes from the container the elements between the specified iterators.

erase(TKey)

Removes elements from the container that match the specified key.

find(ContainerBidirectionalIterator<TValue>, TKey)

Finds an element that matches a specified key.

get_generation()

Gets the current change generation of the underlying container.

(Inherited from IBidirectionalContainer<TValue>)
GetEnumerator()

Returns an enumerator that iterates through a collection.

(Inherited from IEnumerable)
insert(ContainerBidirectionalIterator<TValue>, ContainerBidirectionalIterator<TValue>, TValue)

Adds the given element to the container.

insert(GenericPair<ContainerBidirectionalIterator<TValue>,Boolean>, TValue)

Adds the given value to the container.

insert(IEnumerable<TValue>)

Adds the given enumeration to the container.

insert(IInputIterator<TValue>, IInputIterator<TValue>)

Adds to the container the elements specified by the given iterators.

key_comp()

Returns the ordering delegate that is used to order the controlled sequence. You use it to compare two keys.

lower_bound(ContainerBidirectionalIterator<TValue>, TKey)

Finds the beginning of the range of elements that match a specified key.

rbegin(ReverseBidirectionalIterator<TValue>)

Designates the beginning of the reversed controlled sequence.

rend(ReverseBidirectionalIterator<TValue>)

Designates the end of the reversed controlled sequence.

size()

Counts the number of elements in the container.

swap(ITree<TKey,TValue>)

Swaps the contents of two containers.

upper_bound(ContainerBidirectionalIterator<TValue>, TKey)

Finds the end of the range of elements that match a specified key.

value_comp()

Returns the ordering delegate that is used to order the controlled sequence.

Extension Methods

Cast<TResult>(IEnumerable)

Casts the elements of an IEnumerable to the specified type.

OfType<TResult>(IEnumerable)

Filters the elements of an IEnumerable based on a specified type.

AsParallel(IEnumerable)

Enables parallelization of a query.

AsQueryable(IEnumerable)

Converts an IEnumerable to an IQueryable.

Applies to