Link Search Menu Expand Document

Automorphism overview

An Automorphism is an endomorphic isomorphism. It’s used in this library as a structure-preserving linear isomorphism.

Added in v1.0.0


Table of contents


Instance Operations

compose

Signature

export declare const compose: <A>(a: Automorphism<A>, b: Automorphism<A>) => Automorphism<A>

Added in v1.0.0

identity

Signature

export declare const identity: <A>() => Automorphism<A>

Added in v1.0.0

Typeclasses

Automorphism (interface)

Signature

export interface Automorphism<A> extends Iso.Iso<A, A> {}

Added in v1.0.0