• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D05-Dec-20213.8 KiB2422

aav.dH A D05-Dec-20217.8 KiB340239

aav.hH A D05-Dec-2021555 239

array.dH A D05-Dec-202126.7 KiB1,122826

array.hH A D05-Dec-20214.9 KiB209172

bitarray.dH A D05-Dec-20214.4 KiB193145

bitarray.hH A D05-Dec-2021592 3319

checkedint.hH A D05-Dec-20211.1 KiB3115

ctfloat.dH A D05-Dec-20211.7 KiB6435

ctfloat.hH A D05-Dec-20211.9 KiB6641

dcompat.hH A D05-Dec-20211.2 KiB4927

dsystem.hH A D05-Dec-2021888 252

file.dH A D05-Dec-202125.5 KiB815572

file.hH A D05-Dec-2021926 4221

filename.dH A D05-Dec-202138.2 KiB1,274880

filename.hH A D05-Dec-20211.5 KiB4831

hash.dH A D05-Dec-20212.5 KiB8454

hash.hH A D05-Dec-20211.9 KiB7738

longdouble.dH A D05-Dec-20213.7 KiB14199

object.hH A D05-Dec-20211.2 KiB5626

outbuffer.dH A D05-Dec-202119.5 KiB721528

outbuffer.hH A D05-Dec-20212.2 KiB7859

port.dH A D05-Dec-20211.5 KiB5018

port.hH A D05-Dec-20211.1 KiB3517

region.dH A D05-Dec-20213.9 KiB16292

rmem.dH A D05-Dec-20219.5 KiB376247

rmem.hH A D05-Dec-2021845 3418

root.hH A D05-Dec-2021427 216

rootobject.dH A D05-Dec-20211.4 KiB6841

speller.dH A D05-Dec-20219.2 KiB304190

speller.hH A D05-Dec-2021526 174

string.dH A D05-Dec-20218.1 KiB294171

stringtable.dH A D05-Dec-202111.8 KiB412288

stringtable.hH A D05-Dec-20211.4 KiB5735

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| [ctfloat.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/ctfloat.d)         | A floating point type for compile-time calculations                                        |
9| [file.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/file.d)               | Read a file from disk and store it in memory                                               |
10| [filename.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/filename.d)       | Encapsulate path and file names                                                            |
11| [hash.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/hash.d)               | Calculate a hash for a byte array                                                          |
12| [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        |
13| [man.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/man.d)                 | Opens an online manual page                                                                |
14| [outbuffer.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/outbuffer.d)     | An expandable buffer in which you can write text or binary data.                           |
15| [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 |
16| [region.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/region.d)           | A region allocator                                                                         |
17| [response.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/response.d)       | Parse command line arguments from response files                                           |
18| [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                    |
19| [rootobject.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/rootobject.d)   | A root object that classes in dmd inherit from                                             |
20| [speller.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/speller.d)         | Try to detect typos in identifiers                                                         |
21| [string.d](https://github.com/dlang/dmd/blob/master/src/dmd/root/string.d)           | Various string related functions                                                           |
22| [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       |
23| [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)               |
24