effect-ts-laws
Preparing search index...
typeclass
Dual
Dual
Interface Dual<A>
A
Monoid
with the
combine
arguments flipped.
interface
Dual
<
A
>
{
combine
:
(
self
:
A
,
that
:
A
)
=>
A
;
combineAll
:
(
collection
:
Iterable
<
A
>
)
=>
A
;
combineMany
:
(
self
:
A
,
collection
:
Iterable
<
A
>
)
=>
A
;
empty
:
A
;
}
Type Parameters
A
Hierarchy
Monoid
<
A
>
Dual
Index
Properties
combine
combine
All
combine
Many
empty
Properties
Readonly
combine
combine
:
(
self
:
A
,
that
:
A
)
=>
A
Readonly
combine
All
combineAll
:
(
collection
:
Iterable
<
A
>
)
=>
A
Readonly
combine
Many
combineMany
:
(
self
:
A
,
collection
:
Iterable
<
A
>
)
=>
A
Readonly
empty
empty
:
A
Settings
Member Visibility
Internal
Theme
OS
Light
Dark
On This Page
Properties
combine
combine
All
combine
Many
empty
effect-ts-laws
Loading...
A Monoid with the
combine
arguments flipped.