Go to file
2017-02-23 18:09:51 -06:00
src feat: Add get method for Copy types 2017-02-23 18:09:51 -06: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(travis): disable OS X builds 2017-02-17 14:11:00 -05:00
Cargo.toml chore: cut the 0.4.0 release 2017-02-17 12:22:17 -05:00
CHANGELOG.md chore: cut the 0.4.0 release 2017-02-17 12:22:17 -05:00
CONTRIBUTING.md chore: add copyright & contribution info 2017-02-23 13:42:02 -05:00
CONTRIBUTORS.md chore: add oconnor663 to contributors 2017-02-23 13:41:24 -05: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: remove appveyor CI support 2017-02-17 14:15:56 -05: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 = "0.5"

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.