Home | History | Annotate | only in /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root
Up to higher level directory
NameDateSize
aav.d07-Sep-20257.9K
array.d07-Sep-202526.8K
array.h07-Sep-20254.9K
bitarray.d07-Sep-20254.4K
bitarray.h07-Sep-2025594
complex.d07-Sep-20252.5K
complex_t.h07-Sep-20252.1K
ctfloat.d07-Sep-20251.7K
ctfloat.h07-Sep-20251.9K
dcompat.h07-Sep-20251.4K
dsystem.h07-Sep-2025888
file.d07-Sep-20258.9K
filename.d07-Sep-202534.8K
filename.h07-Sep-20251.5K
hash.d07-Sep-20252.5K
longdouble.d07-Sep-20253.7K
object.h07-Sep-20251.2K
optional.d07-Sep-20252.1K
optional.h07-Sep-20251.2K
port.d07-Sep-20251.5K
port.h07-Sep-20251.1K
README.md07-Sep-20254.3K
region.d07-Sep-20253.9K
rmem.d07-Sep-20259.5K
rmem.h07-Sep-2025847
rootobject.d07-Sep-20251.4K
speller.d07-Sep-20258.9K
string.d07-Sep-20258K
stringtable.d07-Sep-202511.8K
utf.d07-Sep-202515.6K

README.md

      1 # Table of contents
      2 
      3 | File                                                                                 | Purpose                                                                                    |
      4 |--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
      5 | [aav.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/aav.d)                 | An associative array implementation                                                        |
      6 | [array.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/array.d)             | A dynamic array implementation                                                             |
      7 | [bitarray.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/bitarray.d)       | A compact array of bits                                                                    |
      8 | [complex.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/complex.d)         | A complex number type                                                                      |
      9 | [ctfloat.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/ctfloat.d)         | A floating point type for compile-time calculations                                        |
     10 | [env.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/env.d)                 | Modify environment variables                                                               |
     11 | [file.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/file.d)               | Read a file from disk and store it in memory                                               |
     12 | [filename.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/filename.d)       | Encapsulate path and file names                                                            |
     13 | [hash.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/hash.d)               | Calculate a hash for a byte array                                                          |
     14 | [longdouble.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/longdouble.d)   | 80-bit floating point number implementation in case they are not natively supported        |
     15 | [man.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/man.d)                 | Opens an online manual page                                                                |
     16 | [optional.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/optional.d)       | Implementation of an 'Optional' type                                                       |
     17 | [port.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/port.d)               | Portable routines for functions that have different implementations on different platforms |
     18 | [region.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/region.d)           | A region allocator                                                                         |
     19 | [response.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/response.d)       | Parse command line arguments from response files                                           |
     20 | [rmem.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/rmem.d)               | Allocate memory using `malloc` or the GC depending on the configuration                    |
     21 | [rootobject.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/rootobject.d)   | A root object that classes in dmd inherit from                                             |
     22 | [speller.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/speller.d)         | Try to detect typos in identifiers                                                         |
     23 | [string.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/string.d)           | Various string related functions                                                           |
     24 | [stringtable.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/stringtable.d) | Specialized associative array with string keys stored in a variable length structure       |
     25 | [strtold.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/strtold.d)         | D implementation of the standard C function `strtold` (String to long double)              |
     26 | [utf.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/utf.d)                 | Encoding/decoding Unicode text                                                             |
     27