Esempio n. 1
0
 public WritableQueue(ReadableQueue <TValue> original)
 {
     this.CopyFrom(original);
 }
Esempio n. 2
0
 public void CopyFrom(ReadableQueue <TValue> other)
 {
     this.backingItems  = other.BackingItems;
     this.keys          = other.Keys;
     this.nextDrawIndex = other.NextDrawIndex;
 }
Esempio n. 3
0
 public WritableQueue <T> Convert(ReadableQueue <T> original)
 {
     return(original.Clone());
 }