linked 1.0.9

Create families of linked objects that can collaborate across threads while being internally single-threaded
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
graph TD
    subgraph Thread1[Thread 1]
        Task1[Local task] -->|thread-agnostic API surface| Instance1[Linked object instance]
        Instance1 -->|lock-free| Local1[Local state]
    end
    
    subgraph Thread2[Thread 2]
        Task2[Local task] -->|thread-agnostic API surface| Instance2[Linked object instance]
        Instance2 -->|lock-free| Local2[Local state]
    end
    
    SS[Family state]

    Instance1 ---> SS
    Instance2 ---> SS