view run/rehash_01.d @ 528:9e0847cf535a

pre DMD-0.123 review Walter <walter@digitalmars.com> 2005-05-11 mail:00a301c5567d$489cbf20$0200a8c0@colossus
author thomask
date Thu, 12 May 2005 11:13:04 +0000
parents 0a38b9e8c56b
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.rehash_01;

int main(){
	int[char[]] array;
	array["eins"]=1;
	array["zwei"]=2;
	array["drei"]=3;

	assert(array.length==3);
	
	int[char[]] rehashed=array.rehash;
	assert(rehashed is array);

	char[][] key = array.keys;
	assert(key.length==3);
	
	bool have[3];

	assert(!have[0]);
	assert(!have[1]);
	assert(!have[2]);

	foreach(char[] value; key){
		switch(value){
			case "eins":{
				have[0]=true;
				break;
			}case "zwei":{
				have[1]=true;
				break;
			}case "drei":{
				have[2]=true;
				break;
			}default:{
				assert(0);
			}
		}
	}	

	assert(have[0]);
	assert(have[1]);
	assert(have[2]);

	return 0;
}