| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-09-29 | Fix std tests for wasm32-wasip2 target | Nicola Krumschmidt | -2/+4 | |
| 2024-09-17 | Implement ACP 429: add `Lazy{Cell,Lock}::get[_mut]` and `force_mut` | Chayim Refael Friedman | -0/+21 | |
| In the implementation of `force_mut`, I chose performance over safety. For `LazyLock` this isn't really a choice; the code has to be unsafe. But for `LazyCell`, we can have a full-safe implementation, but it will be a bit less performant, so I went with the unsafe approach. | ||||
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -10/+5 | |
| The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options. | ||||
| 2022-10-29 | More inference-friendly API for lazy | Aleksey Kladov | -0/+6 | |
| The signature for new was ``` fn new<F>(f: F) -> Lazy<T, F> ``` Notably, with `F` unconstrained, `T` can be literally anything, and just `let _ = Lazy::new(|| 92)` would not typecheck. This historiacally was a necessity -- `new` is a `const` function, it couldn't have any bounds. Today though, we can move `new` under the `F: FnOnce() -> T` bound, which gives the compiler enough data to infer the type of T from closure. | ||||
| 2022-06-16 | Move/rename `lazy::Sync{OnceCell,Lazy}` to `sync::{Once,Lazy}Lock` | Maybe Waffle | -0/+143 | |
