├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── mutex.rs ├── quick.rs ├── simple.rs └── usage.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/README.md -------------------------------------------------------------------------------- /examples/mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/examples/mutex.rs -------------------------------------------------------------------------------- /examples/quick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/examples/quick.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /examples/usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/examples/usage.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekirisu/type_cell/HEAD/src/lib.rs --------------------------------------------------------------------------------