rsdiff-core 0.0.2

This is the core library for the Acme project. It contains the core primitives that are used throughout the project.
Documentation
/*
   Appellation: structural <mod>
   Contrib: FL03 <jo3mccain@icloud.com>
*/
use crate::ops::{Op, Params};

pub struct Adder<A, B = A> {
    args: BinaryArgs<A, B>
}

impl<A, B> Adder<A, B> {
    pub fn new(lhs: A, rhs: B) -> Self {
        Self {
            args: BinaryArgs::new(lhs, rhs)
        }
    }
}

pub trait StructuralFn {
    type Output;
}