commit | dedc28c20d2e0b345e849830b3f1ccef573c9e56 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <[email protected]> | Wed May 22 09:34:29 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed May 22 09:34:29 2024 +0000 |
tree | ab6a8e41b07a03ae6d9cb7e567e3bc5d33da4dad | |
parent | c9587a1cf4a0fbf9a8420fe685fb2a20c8f6d9bb [diff] | |
parent | 2f6620a2c7b3f02fa02acb221779bf0fdc8693de [diff] |
Merge changes I21c1e459,I9e908ac2 into main am: ae0b8fdb7b am: 2f6620a2c7 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/lazy_static/+/3077674 Change-Id: I4c9fa7507e8b6a7762ac794027a886ef2033aab6 Signed-off-by: Automerger Merge Worker <[email protected]>
A macro for declaring lazily evaluated statics in Rust.
Using this macro, it is possible to have static
s 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.
rustc
1.27.2+
This version is explicitly tested in CI and may only be bumped in new minor versions. Any changes to the supported minimum version will be called out in the release notes.
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.4.0"
...and see the docs for how to use it.
#[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()); }
Licensed under either of
at your option.
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.