delta-types-1.0.0.0: Delta types, also known as change actions.
Copyright© 2021-2023 IOHK 2024 Cardano Foundation
LicenseApache-2.0
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.Delta

Contents

Description

Delta types are instances of the type class Delta. An instance Delta delta indicates that the type delta is a delta type of the corresponding base type Base delta. The apply function applies a delta to the base type.

Delta types can be transformed into each other using the Embedding type. Embeddings can be composed using the Semigroupoid class.

Examples:

apply (Replace 7) 3 = 7
apply [Append [1], Append [2]] [3] = [1,2,3]
apply [Insert 'c', Delete 'b'] (Set.fromList "ab") = Set.fromList "ac"
∀(x :: Set Char). apply [Delete 'b', Insert 'b'] x = apply (Delete 'b') x
Synopsis

Modules

The present module re-exports the following child modules for convenience.

Core definitions: Delta class, apply function, Base type family.

Core instances: Replace, Endo, Maybe, '[]'.

Delta types for common containers.

Embeddings of delta types and helper functions.

Re-export Data.Semigroupoid for convenience.