try...catch slooowness?

spir denis.spir at gmail.com
Sun Dec 19 05:12:47 PST 2010


On Sun, 19 Dec 2010 07:47:11 -0500
Michel Fortin <michel.fortin at michelf.com> wrote:

> On 2010-12-19 07:33:29 -0500, spir <denis.spir at gmail.com> said:
> 
> >     // pointer
> >     t0 = time();
> >     foreach (n ; 0..N2) {
> >         p = (n in table);
> >         if (p) b = table[n];
> >     }
> 
> But why the double lookup? Just dereference the pointer:
> 
> 	foreach (n ; 0..N2) {
> 		p = (n in table);
> 		if (p) b = *p;
> 	}

Oops, sorry, code copy error. But this does not change the test result times (because nearly no key exists in the table).

denis
-- -- -- -- -- -- --
vit esse estrany ☣

spir.wikidot.com



More information about the Digitalmars-d mailing list