|
Class: SkipListNode
Object
|
+--SkipListNode
- Package:
- stx:libbasic2
- Category:
- Collections-Ordered-Trees-Private
- Version:
- rev:
1.1
date: 2017/06/18 15:49:53
- user: cg
- file: SkipListNode.st directory: libbasic2
- module: stx stc-classLibrary: libbasic2
instance creation
-
new: maxLevel
-
(comment from inherited method)
return an instance of myself with anInteger indexed variables
-
on: element level: maxLevel
-
Modified (format): / 18-06-2017 / 17:47:43 / cg
-
tailOfLevel: n
-
accessing
-
atForward: i put: node
-
-
forward: i
-
-
level
-
-
next
-
-
object
-
initialization
-
initialize: maxLevel
-
Modified (format): / 18-06-2017 / 17:47:07 / cg
printing
-
printOn: aStream
-
(comment from inherited method)
append a user printed representation of the receiver to aStream.
The format is suitable for a human - not meant to be read back.
The default here is to output the receiver's class name.
BUT: this method is heavily redefined for objects which
can print prettier.
private
-
object: anObject
-
Modified (format): / 18-06-2017 / 17:47:13 / cg
|