// node for a hashmap extends the node class
var hashnode:=class node
(
	var dynamic hashvalue;
	var init:=method[]
	(
		super;	
	);
	
	var sethash:=method[toset]
	(
		hashvalue:=toset;
	);
	
	var gethash:=method[] hashvalue;
);