gecko-dev/third_party/rust/lazy_static
Andreas Tolfsen d7d1dbd6fa Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf
MozReview-Commit-ID: K1FK0cr0eaJ

--HG--
extra : rebase_source : 5ac6d8cd76768a2525489165edbd75f79a5723ef
2018-06-14 12:47:45 -07:00
..
src Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf 2018-06-14 12:47:45 -07:00
tests Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf 2018-06-14 12:47:45 -07:00
.cargo-checksum.json Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf 2018-06-14 12:47:45 -07:00
.travis.yml Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf 2018-06-14 12:47:45 -07:00
Cargo.toml Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf 2018-06-14 12:47:45 -07:00
LICENSE-APACHE Bug 1341102: Update lazy_static, revendor dependencies. r=me 2017-08-24 13:00:41 +02:00
LICENSE-MIT Bug 1341102: Update lazy_static, revendor dependencies. r=me 2017-08-24 13:00:41 +02:00
README.md No bug - Revendor rust dependencies 2017-12-05 17:34:00 +00:00
appveyor.yml Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf 2018-06-14 12:47:45 -07:00

README.md

lazy-static.rs

A macro for declaring lazily evaluated statics in Rust.

Using this macro, it is possible to have statics that require code to be executed at runtime in order to be initialized. This includes anything requiring heap allocations, like vectors or hash maps, as well as anything that requires non-const function calls to be computed.

Travis-CI Status

Getting Started

lazy-static.rs is available on crates.io. It is recommended to look there for the newest released version, as well as links to the newest builds of the docs.

At the point of the last update of this README, the latest published version could be used like this:

Add the following dependency to your Cargo manifest...

[dependencies]
lazy_static = "1.0"

...and see the docs for how to use it.

Example

#[macro_use]
extern crate lazy_static;

use std::collections::HashMap;

lazy_static! {
    static ref HASHMAP: HashMap<u32, &'static str> = {
        let mut m = HashMap::new();
        m.insert(0, "foo");
        m.insert(1, "bar");
        m.insert(2, "baz");
        m
    };
}

fn main() {
    // First access to `HASHMAP` initializes it
    println!("The entry for `0` is \"{}\".", HASHMAP.get(&0).unwrap());

    // Any further access to `HASHMAP` just returns the computed value
    println!("The entry for `1` is \"{}\".", HASHMAP.get(&1).unwrap());
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.