Chalkboard - v3.0.1
    Preparing search index...

    Type Alias ChalkboardMorphism<T, U>

    The type for morphisms in abstract algebra.

    U

    type ChalkboardMorphism<T, U> = {
        mapping: (a: T) => U;
        struc1: ChalkboardStructure<T>;
        struc2: ChalkboardStructure<U>;
    }

    Type Parameters

    • T
    • U
    Index

    Properties

    Properties

    mapping: (a: T) => U

    The function that takes an element from the first structure and maps it to the second structure

    The first algebraic structure which is the domain of the morphism

    The second algebraic structure which is the codomain of the morphism