shithub: purgatorio

ref: f8935b5778397074d41a48205e5c7f87d7b531fe
dir: purgatorio/module/dict.m

View raw version
Dictionary: module {
	PATH: con "/dis/lib/dict.dis";

	Dict: adt {
		entries: list of (string, string);

		add:	fn( d: self ref Dict, e: (string, string) );
		delete:	fn( d: self ref Dict, k: string );
		lookup:	fn( d: self ref Dict, k: string ) :string;
		keys:	fn( d: self ref Dict ): list of string;
	};


};