NameDateSize

..30-Jul-2023141

aav.dH A D29-Jul-20237.9 KiB

array.dH A D29-Jul-202326.8 KiB

array.hH A D30-Jul-20234.9 KiB

bitarray.dH A D29-Jul-20234.4 KiB

bitarray.hH A D29-Jul-2023594

complex.dH A D29-Jul-20232.5 KiB

complex_t.hH A D29-Jul-20232.1 KiB

ctfloat.dH A D29-Jul-20231.7 KiB

ctfloat.hH A D30-Jul-20231.9 KiB

dcompat.hH A D30-Jul-20231.4 KiB

dsystem.hH A D30-Jul-2023888

file.dH A D29-Jul-20238.9 KiB

filename.dH A D29-Jul-202334.8 KiB

filename.hH A D30-Jul-20231.5 KiB

hash.dH A D29-Jul-20232.5 KiB

longdouble.dH A D29-Jul-20233.7 KiB

object.hH A D30-Jul-20231.2 KiB

optional.dH A D29-Jul-20232.1 KiB

optional.hH A D29-Jul-20231.2 KiB

port.dH A D29-Jul-20231.5 KiB

port.hH A D30-Jul-20231.1 KiB

README.mdH A D29-Jul-20234.3 KiB

region.dH A D29-Jul-20233.9 KiB

rmem.dH A D29-Jul-20239.5 KiB

rmem.hH A D30-Jul-2023847

rootobject.dH A D29-Jul-20231.4 KiB

speller.dH A D29-Jul-20238.9 KiB

string.dH A D29-Jul-20238 KiB

stringtable.dH A D29-Jul-202311.8 KiB

utf.dH A D29-Jul-202315.6 KiB

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