Re: [Mono-dev] Patch for fixing binary search

2006-06-07 Thread Miguel de Icaza
Hello, Good call. Here's v2. It is worth reading Morten Welinder's blog entry follow up. Miguel ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Patch for fixing binary search

2006-06-04 Thread Ben Maurer
Hey, This also exists for qsort object objPivot = keys.GetValueImpl ((low + high) / 2); -- Ben On Sat, 2006-06-03 at 18:04 -0400, Duncan Mak wrote: Hello, As pointed out by this blog post by Joshua Bloch:

Re: [Mono-dev] Patch for fixing binary search

2006-06-04 Thread Duncan Mak
On Sun, 2006-06-04 at 14:41 -0700, Ben Maurer wrote: Hey, This also exists for qsort object objPivot = keys.GetValueImpl ((low + high) / 2); Good call. Here's v2. Duncan. Index: System/ChangeLog === ---