MATHVisualSimulator
A BPMN2 simulator for MATH
Classes | Public Member Functions | Properties
Simulator.SplayTree< TKey, TValue > Class Template Reference

John Geitzen's implementation of templated splay trees. More...

List of all members.

Classes

class  SplayTreeNode
class  TiedList

Public Member Functions

void Add (TKey key, TValue value)
void Add (KeyValuePair< TKey, TValue > item)
void Clear ()
bool ContainsKey (TKey key)
bool Contains (KeyValuePair< TKey, TValue > item)
bool Remove (TKey key)
bool TryGetValue (TKey key, out TValue value)
bool Remove (KeyValuePair< TKey, TValue > item)
void Trim (int depth)
void CopyTo (KeyValuePair< TKey, TValue >[] array, int arrayIndex)
IEnumerator< KeyValuePair
< TKey, TValue > > 
GetEnumerator ()

Properties

TValue this[TKey key] [get, set]
int Count [get]
bool IsReadOnly [get]
ICollection< TKey > Keys [get]
ICollection< TValue > Values [get]

Detailed Description

template<TKey, TValue>
class Simulator::SplayTree< TKey, TValue >

John Geitzen's implementation of templated splay trees.

Template Parameters:
TKeyThe type of the keys
TValueThe type of the values
Type Constraints
TKey :IComparable<TKey> 

The documentation for this class was generated from the following file: