#container #experiment #cat #thought #alive #schrödinger #erwin

schroedinger_box

A Rust container type modeled after Erwin Schrödinger’s famous thought experiment

3 releases

Uses old Rust 2015

0.0.2 Jan 10, 2016
0.0.1 Dec 2, 2014
0.0.0 Nov 30, 2014

#3 in #alive

32 downloads per month

MIT/Apache

9KB
145 lines

SchroedingerBox

A box that contains many values, but collapses into one when opened (read from) for the first time.

Example

let cat_is_alive = SchroedingerBox::new(vec![true, false]);
// Here the cat is both dead and alive, but when we observe it...
let state = *cat_is_alive;
// ...it collapses into one of the possible states with equal probability.
assert_eq!(state, *cat_is_alive);

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.

Dependencies

~310KB