code: 9ferno

ref: a7080788265dd441b5446bea5c4d31fccf7dea1f
dir: /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;
	};


};