Example #1
0
 public Stack(Resolver <T> resolver)
 {
     this.resolver = resolver;
 }
Example #2
0
 /// <summary>
 /// Constructor for the <c>Sequence</c> object. This is
 /// used to position the cursor at the end of the list so the
 /// first inserted match is the first returned from this.
 /// </summary>
 public Sequence(Resolver <T> resolver)
 {
     this.cursor = resolver.Count;
 }
Example #3
0
 /// <summary>
 /// Constructor for the <c>Cache</c> object. This is a
 /// constructor that creates the linked hash map such that
 /// it will purge the entries that are oldest within the map.
 /// </summary>
 public Cache(Resolver <T> resolver)
 {
     this.capacity = resolver.Capacity;
 }