lazy-static.rs

A small macro for defining lazy evaluated static variables in Rust.

  • 所有者: rust-lang-nursery/lazy-static.rs
  • 平台:
  • 许可证: Apache License 2.0
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

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
Latest version
Documentation
License

Minimum supported 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.

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.4.0"

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

Example

use lazy_static::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.

主要指标

概览
名称与所有者rust-lang-nursery/lazy-static.rs
主编程语言Rust
编程语言Rust (语言数: 1)
平台
许可证Apache License 2.0
所有者活动
创建于2014-06-24 08:25:15
推送于2025-01-29 15:31:06
最后一次提交2025-01-29 07:31:06
发布数36
最新版本名称1.5.0 (发布于 )
第一版名称0.1.0 (发布于 2014-11-22 19:36:57)
用户参与
星数2k
关注者数32
派生数127
提交数280
已启用问题?
问题数120
打开的问题数35
拉请求数86
打开的拉请求数0
关闭的拉请求数24
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?