loro-internal 1.12.0

Loro internal library. Do not use it directly as it's not stable.
Documentation
use loro_common::{CompactIdLp, IdFull, IdLp, LoroValue};
use rustc_hash::FxHashMap;
use smallvec::SmallVec;

use super::{Delta, DeltaValue};

#[derive(Clone, Debug)]
pub(crate) struct MovableListInnerDelta {
    pub list: Delta<SmallVec<[IdFull; 1]>, ()>,
    pub elements: FxHashMap<CompactIdLp, ElementDelta>,
}

impl DeltaValue for SmallVec<[IdFull; 1]> {
    fn value_extend(&mut self, other: Self) -> Result<(), Self> {
        for v in other {
            self.push(v)
        }

        Ok(())
    }

    fn take(&mut self, length: usize) -> Self {
        self.drain(..length).collect()
    }

    fn length(&self) -> usize {
        self.len()
    }
}

impl MovableListInnerDelta {
    pub(crate) fn is_empty(&self) -> bool {
        self.list.is_empty() && self.elements.is_empty()
    }
}

#[derive(Clone, Debug)]
pub struct ElementDelta {
    /// This must be Some if it's in checkout mode (not fast-forward mode)
    pub pos: Option<IdLp>,
    pub value: LoroValue,
    pub value_updated: bool,
    /// This must be Some if it's in checkout mode (not fast-forward mode)
    pub value_id: Option<IdLp>,
}

impl ElementDelta {
    pub fn placeholder() -> Self {
        Self {
            pos: None,
            value: LoroValue::Null,
            value_updated: false,
            value_id: None,
        }
    }
}