Skip to content
CCPEDIAby Unity Nodes
Documentation/Canton Network Docs/Daml Standard LibraryModulesView on Canton Network Docs

DA.Monoid

Daml module

DA.Monoid

-

Daml

Data Types

data All

Boolean monoid under conjunction (&&) Constructors:
  • All
getAll
Bool
Instances:

data Any

Boolean Monoid under disjunction (||) Constructors:
  • Any
getAny
Bool
Instances:

data Endo a

The monoid of endomorphisms under composition. Constructors:
  • Endo
appEndo
a -> a
Instances:

data Product a

Monoid under (*)
> Product 2 <> Product 3
Product 6
Constructors:
  • Product a
Instances:

data Sum a

Monoid under (+)
> Sum 1 <> Sum 2
Sum 3
Constructors:
  • Sum a
Instances:

Orphan Typeclass Instances