コード例 #1
0
 public static int listReverse(this DoubleLinkedList phead)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public static IntPtr listRemoveFromTail(out DoubleLinkedList phead, out DoubleLinkedList ptail)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public static IntPtr listRemoveElement(out DoubleLinkedList phead, DoubleLinkedList elem)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public static int listInsertAfter(out DoubleLinkedList phead, DoubleLinkedList elem, IntPtr data)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public static int listAddToTail(out DoubleLinkedList phead, out DoubleLinkedList ptail, IntPtr data)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public static int listJoin(this DoubleLinkedList phead1, out DoubleLinkedList phead2)
 {
     throw new NotImplementedException();
 }