├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── demos └── ntp.nim ├── nesm.nim ├── nesm.nimble ├── nesm ├── basics.nim ├── bytestream.nim ├── cache.nim ├── documentation.nim ├── enums.nim ├── enums.nims ├── generator.nim ├── objects.nim ├── periodic.nim ├── procgen.nim ├── sets.nim ├── settings.nim ├── typesinfo.nim └── utils.nim ├── nimdoc.cfg └── tests ├── basic.nim ├── bugs.nim ├── complex.nim ├── converter.nim ├── converter.nims ├── customseqsize.nim ├── defaults.nim ├── dynamic.nim ├── endiantest.nim ├── enum.nim ├── enumsize.nim ├── helpers ├── rnw.nim └── serializeimport.nim ├── nested.nim ├── nonintrusive.nim ├── settest.nim ├── sizeof.nim └── whenexpr.nim /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/README.md -------------------------------------------------------------------------------- /demos/ntp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/demos/ntp.nim -------------------------------------------------------------------------------- /nesm.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm.nim -------------------------------------------------------------------------------- /nesm.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm.nimble -------------------------------------------------------------------------------- /nesm/basics.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/basics.nim -------------------------------------------------------------------------------- /nesm/bytestream.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/bytestream.nim -------------------------------------------------------------------------------- /nesm/cache.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/cache.nim -------------------------------------------------------------------------------- /nesm/documentation.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/documentation.nim -------------------------------------------------------------------------------- /nesm/enums.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/enums.nim -------------------------------------------------------------------------------- /nesm/enums.nims: -------------------------------------------------------------------------------- 1 | switch("define", "nimOldCaseObjects") -------------------------------------------------------------------------------- /nesm/generator.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/generator.nim -------------------------------------------------------------------------------- /nesm/objects.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/objects.nim -------------------------------------------------------------------------------- /nesm/periodic.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/periodic.nim -------------------------------------------------------------------------------- /nesm/procgen.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/procgen.nim -------------------------------------------------------------------------------- /nesm/sets.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/sets.nim -------------------------------------------------------------------------------- /nesm/settings.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/settings.nim -------------------------------------------------------------------------------- /nesm/typesinfo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/typesinfo.nim -------------------------------------------------------------------------------- /nesm/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nesm/utils.nim -------------------------------------------------------------------------------- /nimdoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/nimdoc.cfg -------------------------------------------------------------------------------- /tests/basic.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/basic.nim -------------------------------------------------------------------------------- /tests/bugs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/bugs.nim -------------------------------------------------------------------------------- /tests/complex.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/complex.nim -------------------------------------------------------------------------------- /tests/converter.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/converter.nim -------------------------------------------------------------------------------- /tests/converter.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/converter.nims -------------------------------------------------------------------------------- /tests/customseqsize.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/customseqsize.nim -------------------------------------------------------------------------------- /tests/defaults.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/defaults.nim -------------------------------------------------------------------------------- /tests/dynamic.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/dynamic.nim -------------------------------------------------------------------------------- /tests/endiantest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/endiantest.nim -------------------------------------------------------------------------------- /tests/enum.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/enum.nim -------------------------------------------------------------------------------- /tests/enumsize.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/enumsize.nim -------------------------------------------------------------------------------- /tests/helpers/rnw.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/helpers/rnw.nim -------------------------------------------------------------------------------- /tests/helpers/serializeimport.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/helpers/serializeimport.nim -------------------------------------------------------------------------------- /tests/nested.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/nested.nim -------------------------------------------------------------------------------- /tests/nonintrusive.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/nonintrusive.nim -------------------------------------------------------------------------------- /tests/settest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/settest.nim -------------------------------------------------------------------------------- /tests/sizeof.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/sizeof.nim -------------------------------------------------------------------------------- /tests/whenexpr.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xomachine/NESM/HEAD/tests/whenexpr.nim --------------------------------------------------------------------------------