Guest User

Untitled

a guest
Jun 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. THashNode <KEY_TYPE, VALUE_TYPE> = class
  2. public
  3. Key : KEY_TYPE;
  4. Value : VALUE_TYPE;
  5. Left : THashNode <KEY_TYPE, VALUE_TYPE>;
  6. Right : THashNode <KEY_TYPE, VALUE_TYPE>;
  7. end;
  8.  
  9. PHashNode = ^THashNode <KEY_TYPE, VALUE_TYPE>
  10.  
  11. TGeneric<T> = record
  12. value: T;
  13. end;
  14.  
  15. TSpecific = TGeneric<string>;
  16.  
  17. PGeneric = ^TSpecific;
  18.  
  19. type
  20. PHashNode<K, V> = ^THashNode<K, V>;
Add Comment
Please, Sign In to add comment