Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. struct Data
  2.  
  3.     private thistype next
  4.     private thistype prev
  5.  
  6.     static method create takes nothing returns thistype
  7.         set this.next=thistype(0).next
  8.         set this.next.prev=this
  9.         set this.prev=thistype(0)
  10.         set thistype(0).next=this
  11.     endmethod
  12.  
  13. endstruct
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement