soft3/nox/rs/data/inner.rs

//! atom or pair โ€” the two kinds of data. nothing else.

use nebu::Goldilocks;
use super::Order;

/// the two kinds of data
#[derive(Debug, Clone, Copy)]
pub enum Data {
    Atom { value: Goldilocks },
    Pair { left: Order, right: Order },
}

Homonyms

cyb/wysm/crates/wasmi/src/store/inner.rs

Graph