├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml ├── nim.cfg ├── shared.nimble ├── shared ├── private │ └── common.nim ├── seq.nim └── string.nim └── tests ├── nim.cfg ├── tperf.nim ├── tseq.nim └── tstring.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/appveyor.yml -------------------------------------------------------------------------------- /nim.cfg: -------------------------------------------------------------------------------- 1 | --threads:on -------------------------------------------------------------------------------- /shared.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/shared.nimble -------------------------------------------------------------------------------- /shared/private/common.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/shared/private/common.nim -------------------------------------------------------------------------------- /shared/seq.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/shared/seq.nim -------------------------------------------------------------------------------- /shared/string.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/shared/string.nim -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- 1 | --NimblePath:".." -------------------------------------------------------------------------------- /tests/tperf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/tests/tperf.nim -------------------------------------------------------------------------------- /tests/tseq.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/tests/tseq.nim -------------------------------------------------------------------------------- /tests/tstring.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genotrance/shared/HEAD/tests/tstring.nim --------------------------------------------------------------------------------