Go to file
2018-09-19 13:33:05 -04:00
src feat: add LazyCell::replace for infallible access 2018-09-19 13:00:50 -04:00
tests impr(LazyCell): return Err(value) on full cell 2016-08-17 03:08:28 -04:00
.clog.toml chore(CONTRIBUTING): add CONTRIBUTING.md 2016-03-28 07:10:30 -04:00
.gitignore feat: add initial commit 2016-03-15 21:29:11 -04:00
.travis.yml chore: bump minimum rustc version 2018-09-10 18:58:54 -04:00
Cargo.toml chore: cut the 1.0.0 release 2018-09-10 18:59:12 -04:00
CHANGELOG.md chore: cut the 1.0.0 release 2018-09-10 18:59:12 -04:00
CONTRIBUTING.md chore: add copyright & contribution info 2017-02-23 13:42:02 -05:00
CONTRIBUTORS.md chore: add Alex Crichton to list of contributors 2018-09-19 13:33:05 -04:00
LICENSE-APACHE feat: add initial implementation 2016-03-15 21:29:11 -04:00
LICENSE-MIT chore: update copyright dates 2017-02-23 13:41:51 -05:00
README.md chore: cut the 1.0.0 release 2018-09-10 18:59:12 -04:00
rustfmt.toml style: apply rustfmt to code 2017-02-17 12:22:17 -05:00

lazycell

Linux travis-badge
api-docs-badge crates-io license-badge coveralls-badge

Rust library providing a lazily filled Cell.

Table of Contents

Usage

Add the following to your Cargo.toml:

[dependencies]
lazycell = "1.1"

And in your lib.rs or main.rs:

extern crate lazycell;

See the API docs for information on using the crate in your library.

Contributing

Contributions are always welcome! If you have an idea for something to add (code, documentation, tests, examples, etc.) feel free to give it a shot.

Please read CONTRIBUTING.md before you start contributing.

Credits

The LazyCell library is based originally on work by The Rust Project Developers for the project crates.io.

The list of contributors to this project can be found at CONTRIBUTORS.md.

License

LazyCell is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, and LICENSE-MIT for details.