예제 #1
0
 public FlexibleList(FlexibleList <T> other)
 {
     list = new(other.list);
 }
예제 #2
0
 public BidirectionalList(IEnumerable <T> elements)
 {
     left  = new();
     right = new(elements);
 }
예제 #3
0
 public BidirectionalList(BidirectionalList <T> other)
 {
     left  = new(other.left);
     right = new(other.right);
 }
예제 #4
0
 public BidirectionalList()
 {
     left  = new();
     right = new();
 }