├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── RELEASES.md ├── src ├── assignment.rs ├── binary.rs ├── lib.rs └── unary.rs └── tests ├── assignment.rs ├── binary.rs └── unary.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/RELEASES.md -------------------------------------------------------------------------------- /src/assignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/src/assignment.rs -------------------------------------------------------------------------------- /src/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/src/binary.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/unary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/src/unary.rs -------------------------------------------------------------------------------- /tests/assignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/tests/assignment.rs -------------------------------------------------------------------------------- /tests/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/tests/binary.rs -------------------------------------------------------------------------------- /tests/unary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwp3000/impl_ops/HEAD/tests/unary.rs --------------------------------------------------------------------------------