nap-core 0.3.12

Core library for the Narrative Addressing Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Per-strategy merge logic.
//!
//! Each strategy is a pure function that takes the three values
//! (base, current, proposed) and returns a merge result for that
//! specific path.

pub mod atomic;
pub mod deep_merge;
pub mod edge_list;
pub mod ordered_unique;
pub mod replace;
pub mod set_union;