Re: bug in std.algoeithm.sort ?

2009-06-04 Thread Gide Nwawudu
On Thu, 04 Jun 2009 07:18:33 -0400, A.M. wrote: >import std.string; >import std.array; >import std.algorithm; > >void main() >{ >string[] sa = ["TOM","JOE","TOM4","TOM12","TOM6"]; >sort!(comp)(sa); >} >bool comp(string x, string y) >{ >string[] s = [x,y]; >return i

Re: 'private import' and 'private alias' is not working.

2009-02-27 Thread Gide Nwawudu
On Thu, 26 Feb 2009 18:05:46 -0500, Christopher Wright wrote: >CLXX wrote: >> I found some private attributes is not working. > >Private imports work if you just do "private import foo;". >They fail if the import is also static. >They fail if the import is renamed. >They fail if the import is sel