#smart-pointers #immutability #values #storing #string #cow #oco

oco_ref

A smart pointer for storing immutable values with relatively-cheap cloning. (Like a Cow meets an Rc!)

3 unstable releases

new 0.2.0 Apr 27, 2024
0.1.1 Apr 16, 2024
0.1.0 Apr 16, 2024

#364 in Rust patterns

Download history 253/week @ 2024-04-14 130/week @ 2024-04-21

383 downloads per month
Used in tachys

MIT license

22KB
494 lines

This module contains the Oco (Owned Clones Once) smart pointer, which is used to store immutable references to values. This is useful for storing, for example, strings.

Imagine this as an alternative to [Cow] with an additional, reference-counted branch.

use oco_ref::Oco;
use std::sync::Arc;

let static_str = "foo";
let arc_str: Arc<str> = "bar".into();
let owned_str: String = "baz".into();

fn uses_oco(value: impl Into<Oco<'static, str>>) {
    let mut value = value.into();

    // ensures that the value is either a reference, or reference-counted
    // O(n) at worst
    let clone1 = value.clone_inplace();

    // these subsequent clones are O(1)
    let clone2 = value.clone();
    let clone3 = value.clone();
}

uses_oco(static_str);
uses_oco(arc_str);
uses_oco(owned_str);

lib.rs:

This module contains the Oco (Owned Clones Once) smart pointer, which is used to store immutable references to values. This is useful for storing, for example, strings.

Dependencies

~0.4–1MB
~23K SLoC