Node:Dictionary, Next:, Previous:Problems, Up:Top



Dictionary

These words are used for naming the methods.


add
Add an object to the data set. If the set is an ordered set, the new object is added just after current pointer. The method which add the object to the last of ordered set must be named append.
append
Add an object to the ordered data set. The object will be added to the last of the ordered set. If the target data is unordered set, use add instead of append.
clear
Recover the initial state of an object. All member of the object will be lost.
print
Printout the information of the object to standard output. This method is used for debugging. Do not use this method to
search
Seach one object from data set. If the target objects are more than one, use pickup.