├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── DIPs ├── 1NNN-RAC.md ├── DIP1048.md ├── DIP1049.md ├── README.md ├── accepted │ ├── DIP1003.md │ ├── DIP1007.md │ ├── DIP1009.md │ ├── DIP1010.md │ ├── DIP1013.md │ ├── DIP1014.md │ ├── DIP1018.md │ ├── DIP1021.md │ ├── DIP1024.md │ ├── DIP1029.md │ ├── DIP1030.md │ ├── DIP1034.md │ ├── DIP1035.md │ ├── DIP1038.md │ ├── DIP1043.md │ ├── DIP1046.md │ ├── DIP1051.md │ ├── DIP1052.md │ └── DIP1053.md ├── archive │ ├── DIP20.md │ ├── DIP22.md │ ├── DIP25.md │ ├── DIP37.md │ ├── DIP42.md │ ├── DIP43.md │ ├── DIP45.md │ ├── DIP56.md │ ├── DIP60.md │ ├── DIP61.md │ ├── DIP75.md │ └── README.md ├── other │ ├── DIP1000.md │ ├── DIP1004.md │ ├── DIP1005-countlines.zsh │ ├── DIP1005-time.zsh │ ├── DIP1005.md │ ├── DIP1006.md │ ├── DIP1008.md │ ├── DIP1011.md │ ├── DIP1012.md │ ├── DIP1019.md │ ├── DIP1020.md │ ├── DIP1022.md │ ├── DIP1023.md │ ├── DIP1025.md │ ├── DIP1026.md │ ├── DIP1031.md │ ├── DIP1032.md │ ├── DIP1033.md │ ├── DIP1036.md │ ├── DIP1037.md │ ├── DIP1039.md │ ├── DIP1040.md │ ├── DIP1041.md │ ├── DIP1042.md │ └── DIP1045.md └── rejected │ ├── DIP1001.md │ ├── DIP1002.md │ ├── DIP1015.md │ ├── DIP1016.md │ ├── DIP1017.md │ ├── DIP1027.md │ ├── DIP1028.md │ ├── DIP1044.md │ └── DIP1047.md ├── GUIDELINES.md ├── LICENSE.txt ├── PROCEDURE.md ├── README.md ├── Template.md ├── docs ├── guidelines-authors.md ├── guidelines-forums.md └── process-authoring.md └── tools ├── dwikiquery ├── dub.sdl └── source │ └── app.d └── genoverview ├── dub.sdl └── source ├── app.d └── metadata.d /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/.gitignore -------------------------------------------------------------------------------- /DIPs/1NNN-RAC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/1NNN-RAC.md -------------------------------------------------------------------------------- /DIPs/DIP1048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/DIP1048.md -------------------------------------------------------------------------------- /DIPs/DIP1049.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/DIP1049.md -------------------------------------------------------------------------------- /DIPs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/README.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1003.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1007.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1009.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1010.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1013.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1014.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1018.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1021.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1024.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1029.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1030.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1034.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1035.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1038.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1043.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1046.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1051.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1051.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1052.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1052.md -------------------------------------------------------------------------------- /DIPs/accepted/DIP1053.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/accepted/DIP1053.md -------------------------------------------------------------------------------- /DIPs/archive/DIP20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP20.md -------------------------------------------------------------------------------- /DIPs/archive/DIP22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP22.md -------------------------------------------------------------------------------- /DIPs/archive/DIP25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP25.md -------------------------------------------------------------------------------- /DIPs/archive/DIP37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP37.md -------------------------------------------------------------------------------- /DIPs/archive/DIP42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP42.md -------------------------------------------------------------------------------- /DIPs/archive/DIP43.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP43.md -------------------------------------------------------------------------------- /DIPs/archive/DIP45.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP45.md -------------------------------------------------------------------------------- /DIPs/archive/DIP56.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP56.md -------------------------------------------------------------------------------- /DIPs/archive/DIP60.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP60.md -------------------------------------------------------------------------------- /DIPs/archive/DIP61.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP61.md -------------------------------------------------------------------------------- /DIPs/archive/DIP75.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/DIP75.md -------------------------------------------------------------------------------- /DIPs/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/archive/README.md -------------------------------------------------------------------------------- /DIPs/other/DIP1000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1000.md -------------------------------------------------------------------------------- /DIPs/other/DIP1004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1004.md -------------------------------------------------------------------------------- /DIPs/other/DIP1005-countlines.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1005-countlines.zsh -------------------------------------------------------------------------------- /DIPs/other/DIP1005-time.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1005-time.zsh -------------------------------------------------------------------------------- /DIPs/other/DIP1005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1005.md -------------------------------------------------------------------------------- /DIPs/other/DIP1006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1006.md -------------------------------------------------------------------------------- /DIPs/other/DIP1008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1008.md -------------------------------------------------------------------------------- /DIPs/other/DIP1011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1011.md -------------------------------------------------------------------------------- /DIPs/other/DIP1012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1012.md -------------------------------------------------------------------------------- /DIPs/other/DIP1019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1019.md -------------------------------------------------------------------------------- /DIPs/other/DIP1020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1020.md -------------------------------------------------------------------------------- /DIPs/other/DIP1022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1022.md -------------------------------------------------------------------------------- /DIPs/other/DIP1023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1023.md -------------------------------------------------------------------------------- /DIPs/other/DIP1025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1025.md -------------------------------------------------------------------------------- /DIPs/other/DIP1026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1026.md -------------------------------------------------------------------------------- /DIPs/other/DIP1031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1031.md -------------------------------------------------------------------------------- /DIPs/other/DIP1032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1032.md -------------------------------------------------------------------------------- /DIPs/other/DIP1033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1033.md -------------------------------------------------------------------------------- /DIPs/other/DIP1036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1036.md -------------------------------------------------------------------------------- /DIPs/other/DIP1037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1037.md -------------------------------------------------------------------------------- /DIPs/other/DIP1039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1039.md -------------------------------------------------------------------------------- /DIPs/other/DIP1040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1040.md -------------------------------------------------------------------------------- /DIPs/other/DIP1041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1041.md -------------------------------------------------------------------------------- /DIPs/other/DIP1042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1042.md -------------------------------------------------------------------------------- /DIPs/other/DIP1045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/other/DIP1045.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1001.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1002.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1015.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1016.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1017.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1027.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1028.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1044.md -------------------------------------------------------------------------------- /DIPs/rejected/DIP1047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/DIPs/rejected/DIP1047.md -------------------------------------------------------------------------------- /GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/GUIDELINES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PROCEDURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/PROCEDURE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/README.md -------------------------------------------------------------------------------- /Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/Template.md -------------------------------------------------------------------------------- /docs/guidelines-authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/docs/guidelines-authors.md -------------------------------------------------------------------------------- /docs/guidelines-forums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/docs/guidelines-forums.md -------------------------------------------------------------------------------- /docs/process-authoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/docs/process-authoring.md -------------------------------------------------------------------------------- /tools/dwikiquery/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/tools/dwikiquery/dub.sdl -------------------------------------------------------------------------------- /tools/dwikiquery/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/tools/dwikiquery/source/app.d -------------------------------------------------------------------------------- /tools/genoverview/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/tools/genoverview/dub.sdl -------------------------------------------------------------------------------- /tools/genoverview/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/tools/genoverview/source/app.d -------------------------------------------------------------------------------- /tools/genoverview/source/metadata.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/DIPs/HEAD/tools/genoverview/source/metadata.d --------------------------------------------------------------------------------