├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── lib.rs └── sptr.rs └── tests └── test.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irrustible/ointers/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irrustible/ointers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irrustible/ointers/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irrustible/ointers/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/sptr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irrustible/ointers/HEAD/src/sptr.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irrustible/ointers/HEAD/tests/test.rs --------------------------------------------------------------------------------