|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
D - dmd alpha 3
ftp://www.digitalmars.com/dmdalpha3.zip Fixed a lot of bugs regarding arrays and strings. Check out strings.d, the D string runtime library functions. It makes much use of array slicing and unit tests. -Walter Dec 19 2001
"Walter" <walter digitalmars.com> wrote in message news:9vrg2r$2q8m$1 digitaldaemon.com...ftp://www.digitalmars.com/dmdalpha3.zip Fixed a lot of bugs regarding arrays and strings. Check out strings.d, the D string runtime library functions. It makes much use of array slicing and unit tests. Dec 19 2001
"Pavel Minayev" <evilone omen.ru> wrote in message news:9vrsog$4c1$1 digitaldaemon.com..."Walter" <walter digitalmars.com> wrote in message news:9vrg2r$2q8m$1 digitaldaemon.com...ftp://www.digitalmars.com/dmdalpha3.zip Fixed a lot of bugs regarding arrays and strings. Check out strings.d, the D string runtime library functions. It makes Dec 20 2001
Heh, Seems like you've forgot to include the new phobos.lib into the archive: it's dated 12/16 and has all the new stuff like string functions missing. By the way, a question about strings. Is cmp() just a "temporary" solution, or you are going to drop support for == and friends on strings completely? Dec 20 2001
"Pavel Minayev" <evilone omen.ru> wrote in message news:9vs88g$g4j$1 digitaldaemon.com...Seems like you've forgot to include the new phobos.lib into the archive: it's dated 12/16 and has all the new stuff like string functions missing. Dec 20 2001
"Walter" <walter digitalmars.com> wrote in message news:9vscf4$jm6$2 digitaldaemon.com..."Pavel Minayev" <evilone omen.ru> wrote in message news:9vs88g$g4j$1 digitaldaemon.com...Seems like you've forgot to include the new phobos.lib into the archive: it's dated 12/16 and has all the new stuff like string functions missing. Dec 20 2001
"Pavel Minayev" <evilone omen.ru> wrote in message news:9vsnho$tjq$1 digitaldaemon.com...Not a good idea IMHO. One thing that made me move to C++ from C was better string handling (std::string). I'm not quite sure I'd move from C++ to D if it doesn't have decent string support. Why not just overload comparison operators for char[] anyhow? Dec 20 2001
Walter wrote:"Pavel Minayev" <evilone omen.ru> wrote in message news:9vsnho$tjq$1 digitaldaemon.com...Not a good idea IMHO. One thing that made me move to C++ from C was better string handling (std::string). I'm not quite sure I'd move from C++ to D if it doesn't have decent string support. Why not just overload comparison operators for char[] anyhow? Dec 20 2001
"Russell Borogove" <kaleja estarcion.com> wrote in message news:3C22286D.A3FCB77C estarcion.com...I'd guess that it's about 10 times more likely that a programmer will want to know if two strings contain the same sequence of characters than want to know if they share storage. The operator used for the former should be as short, intuitive, and readable as possible. Dec 20 2001
"Walter" <walter digitalmars.com> wrote in message news:9vt62e$1em4$1 digitaldaemon.com...Why not just overload comparison operators for char[] anyhow? Dec 20 2001
|