├── .gitattributes ├── .gitignore ├── Docs ├── Proposals │ ├── D0447R4 - Introduction of colony to the standard library.htm │ ├── Fixed_Point_Library_Proposal.md │ ├── NonAllocatingStandardFunction.pdf │ ├── RingProposal.pdf │ ├── p0037.html │ ├── rawstorage.html │ ├── ring_feedback.pdf │ ├── ring_proposal_r5.tex │ ├── uninitialized.html │ └── unstable_remove.html ├── fixed_point.md └── plf_licensing.txt ├── README.md ├── SG14 ├── algorithm_ext.h ├── inplace_function.h ├── plf_colony.h ├── ring.h └── transcode.h ├── SG14_test ├── SG14_test.cpp ├── SG14_test.h ├── inplace_function_test.cpp ├── main.cpp ├── plf_colony_test_suite.cpp ├── ring_test.cpp ├── transcode_test.cpp ├── uninitialized.cpp └── unstable_remove_test.cpp └── cmake ├── .gitignore └── CMakeLists.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/Proposals/D0447R4 - Introduction of colony to the standard library.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/D0447R4 - Introduction of colony to the standard library.htm -------------------------------------------------------------------------------- /Docs/Proposals/Fixed_Point_Library_Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/Fixed_Point_Library_Proposal.md -------------------------------------------------------------------------------- /Docs/Proposals/NonAllocatingStandardFunction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/NonAllocatingStandardFunction.pdf -------------------------------------------------------------------------------- /Docs/Proposals/RingProposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/RingProposal.pdf -------------------------------------------------------------------------------- /Docs/Proposals/p0037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/p0037.html -------------------------------------------------------------------------------- /Docs/Proposals/rawstorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/rawstorage.html -------------------------------------------------------------------------------- /Docs/Proposals/ring_feedback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/ring_feedback.pdf -------------------------------------------------------------------------------- /Docs/Proposals/ring_proposal_r5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/ring_proposal_r5.tex -------------------------------------------------------------------------------- /Docs/Proposals/uninitialized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/uninitialized.html -------------------------------------------------------------------------------- /Docs/Proposals/unstable_remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/Proposals/unstable_remove.html -------------------------------------------------------------------------------- /Docs/fixed_point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/fixed_point.md -------------------------------------------------------------------------------- /Docs/plf_licensing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/Docs/plf_licensing.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/README.md -------------------------------------------------------------------------------- /SG14/algorithm_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14/algorithm_ext.h -------------------------------------------------------------------------------- /SG14/inplace_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14/inplace_function.h -------------------------------------------------------------------------------- /SG14/plf_colony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14/plf_colony.h -------------------------------------------------------------------------------- /SG14/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14/ring.h -------------------------------------------------------------------------------- /SG14/transcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14/transcode.h -------------------------------------------------------------------------------- /SG14_test/SG14_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/SG14_test.cpp -------------------------------------------------------------------------------- /SG14_test/SG14_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/SG14_test.h -------------------------------------------------------------------------------- /SG14_test/inplace_function_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/inplace_function_test.cpp -------------------------------------------------------------------------------- /SG14_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/main.cpp -------------------------------------------------------------------------------- /SG14_test/plf_colony_test_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/plf_colony_test_suite.cpp -------------------------------------------------------------------------------- /SG14_test/ring_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/ring_test.cpp -------------------------------------------------------------------------------- /SG14_test/transcode_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/transcode_test.cpp -------------------------------------------------------------------------------- /SG14_test/uninitialized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/uninitialized.cpp -------------------------------------------------------------------------------- /SG14_test/unstable_remove_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/SG14_test/unstable_remove_test.cpp -------------------------------------------------------------------------------- /cmake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/cmake/.gitignore -------------------------------------------------------------------------------- /cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmcfarlane/SG14/HEAD/cmake/CMakeLists.txt --------------------------------------------------------------------------------