Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove numbers
  • Loading branch information
matklad committed Oct 21, 2019
commit 34c70a4d7956f7d42b51222f6b6c9d5dc4756828
2 changes: 1 addition & 1 deletion text/0000-standard-lazy-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static BACKTRACE: Lazy<Option<String>> = Lazy::new(|| {
# Motivation
[motivation]: #motivation

Working with lazy initialized values is ubiquitous, [`lazy_static`] and [`lazycell`] crates have more than 20 million downloads combined.
Working with lazy initialized values is ubiquitous, [`lazy_static`] and [`lazycell`] crates are used throughout the ecosystem.
Although some of the popularity of `lazy_static` can be attributed to current limitations of constant evaluation in Rust, there are many cases when even perfect `const fn` can't replace lazy values.

At the same time, working with lazy values in Rust is not easy:
Expand Down