├── .gitignore ├── LICENSE ├── README.org ├── seqmath.nimble ├── src ├── seqmath.nim └── seqmath │ ├── finance.nim │ ├── smath.nim │ └── util.nim └── tests ├── nim.cfg └── tall.nim /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | *~ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/README.org -------------------------------------------------------------------------------- /seqmath.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/seqmath.nimble -------------------------------------------------------------------------------- /src/seqmath.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/src/seqmath.nim -------------------------------------------------------------------------------- /src/seqmath/finance.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/src/seqmath/finance.nim -------------------------------------------------------------------------------- /src/seqmath/smath.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/src/seqmath/smath.nim -------------------------------------------------------------------------------- /src/seqmath/util.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/src/seqmath/util.nim -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- 1 | --path:"../src/" -------------------------------------------------------------------------------- /tests/tall.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlp765/seqmath/HEAD/tests/tall.nim --------------------------------------------------------------------------------