Hi Kashyap,

> am curious though ... how's hash table implemented without array?

We are talking here about C and Java. In pil32 it *is* an array

   any Intern[IHASH], Transient[IHASH], Extern[EHASH];

and in Ersatz it is a HashMap

   final static HashMap<String,Symbol> Intern = new HashMap<String,Symbol>();
   final static HashMap<String,Symbol> Transient = new HashMap<String,Symbol>();

- Alex

-- 
UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe

Reply via email to