Thread overview
Beginner to D... resources?
Sep 14, 2006
B. Ross
Sep 15, 2006
B Ross
September 14, 2006
I probably missed them but where can I find documentation for all the std.string, and just libraries(modules?) in general when using GDC?
September 14, 2006
B. Ross wrote:

> I probably missed them but where can I find documentation for all the std.string, and just libraries(modules?) in general when using GDC?

GPhobos (from GDC) is pretty much the same as Phobos (from DMD),
so you should be able to use the documentation for that compiler:
http://www.digitalmars.com/d/phobos/phobos.html

One important difference is that DMD uses std.c.linux.linux and
version(linux), while GDC uses the portable std.c.unix.unix/Unix.

Other libraries and such linking is similar to the rest of GCC:
http://gcc.gnu.org/onlinedocs/gcc-4.0.3/gcc/

HTH,
--anders
September 15, 2006
Anders F Björklund wrote:
> B. Ross wrote:
> 
>> I probably missed them but where can I find documentation for all the std.string, and just libraries(modules?) in general when using GDC?
> 
> 
> GPhobos (from GDC) is pretty much the same as Phobos (from DMD),
> so you should be able to use the documentation for that compiler:
> http://www.digitalmars.com/d/phobos/phobos.html
> 
> One important difference is that DMD uses std.c.linux.linux and
> version(linux), while GDC uses the portable std.c.unix.unix/Unix.
> 
> Other libraries and such linking is similar to the rest of GCC:
> http://gcc.gnu.org/onlinedocs/gcc-4.0.3/gcc/
> 
> HTH,
> --anders

Great thanks, I'm really liking D a lot!