├── .gitignore ├── .nycrc ├── .travis.yml ├── LICENSE ├── README.md ├── coverage.lcov ├── dist ├── IOption.d.ts ├── IOption.js ├── IOption.js.map ├── IResult.d.ts ├── IResult.js ├── IResult.js.map ├── index.d.ts ├── index.js └── index.js.map ├── package.json ├── src ├── IOption.ts ├── IResult.ts └── index.ts ├── test ├── Option.spec.ts ├── Result.spec.ts └── helper.spec.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/README.md -------------------------------------------------------------------------------- /coverage.lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/coverage.lcov -------------------------------------------------------------------------------- /dist/IOption.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/IOption.d.ts -------------------------------------------------------------------------------- /dist/IOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/IOption.js -------------------------------------------------------------------------------- /dist/IOption.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/IOption.js.map -------------------------------------------------------------------------------- /dist/IResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/IResult.d.ts -------------------------------------------------------------------------------- /dist/IResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/IResult.js -------------------------------------------------------------------------------- /dist/IResult.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/IResult.js.map -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/package.json -------------------------------------------------------------------------------- /src/IOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/src/IOption.ts -------------------------------------------------------------------------------- /src/IResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/src/IResult.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/Option.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/test/Option.spec.ts -------------------------------------------------------------------------------- /test/Result.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/test/Result.spec.ts -------------------------------------------------------------------------------- /test/helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/test/helper.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoticknight/rust-option/HEAD/tsconfig.json --------------------------------------------------------------------------------