effect-ts-laws
    Preparing search index...

    Interface BaseIsomorphismGiven<A>

    Shared arguments required for testing an Isomorphism with a decoded type A.

    interface BaseIsomorphismGiven<A> {
        a: Arbitrary<A>;
        equalsA: Equivalence<A>;
    }

    Type Parameters

    • A
    Index

    Properties

    Properties

    a: Arbitrary<A>

    An arbitrary for the decoded value of the Isomorphism of type A.

    equalsA: Equivalence<A>

    An equivalence for the decoded value of the Isomorphism of type A.