Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I'm a lisp noobie, and I need a hash table class.

Tags:

hashtable

lisp

I'm kind of new to lisp, and after coming from languages like C, Java, and Python, where there is a well defined set of standard libraries, I'm a little lost in the sea of implementations and libraries out there.

I'm looking for a few nice data structures to use as primitives, such as RB trees and dictionaries.

like image 845
alexgolec Avatar asked Feb 05 '11 21:02

alexgolec


1 Answers

Common Lisp has a specification: CL HyperSpec.

Hash tables are part of that.

like image 78
Rainer Joswig Avatar answered Sep 22 '22 10:09

Rainer Joswig