#mutation #container #value #offers #fun #unsafe #libc

bucket

Offers a very simple container for any value without mutation

1 stable release

1.0.0 Mar 2, 2022

#1912 in Data structures

GPL-3.0-only

9KB
142 lines

Bucket

Library made for fun that offers a very simple container for any value without mutation.

Beware, it bites.

Example

See src/tests.rs for more examples.

use bucket::Bucket;

fn main() {
    let my_val: Vec<u32> = vec![1, 2, 3];

    // Creates new Bucket and takes the ownership of `my_val`.
    let bucket = Bucket::new(my_val);

    // Increases every number from the vector by 1.
    // Mutation of the Bucket isn't needed.
    for number in bucket.peek_mut().unwrap() {
        *number += 1;
    }

    // Returns content of the Bucket.
    let _ = bucket.vacate().unwrap();

    // Now the Bucket can be filled with other u32 vector.
    bucket.fill(vec![4, 4, 4]);
}

lib.rs:

Library made for fun that offers a very simple container for any value without mutation.

Dependencies

~42KB