├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ngram.go ├── ngram_test.go ├── spool.go └── spool_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/README.md -------------------------------------------------------------------------------- /ngram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/ngram.go -------------------------------------------------------------------------------- /ngram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/ngram_test.go -------------------------------------------------------------------------------- /spool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/spool.go -------------------------------------------------------------------------------- /spool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazin/go-ngram/HEAD/spool_test.go --------------------------------------------------------------------------------