effect-ts-laws
Preparing search index...
typeclass
RightFoldable
RightFoldable
Interface RightFoldable<F>
Adds a
reduceRight
function to
Foldable
.
interface
RightFoldable
<
F
extends
TypeLambda
>
{
"[URI]"
?:
F
;
reduce
:
{
<
A
,
B
>
(
b
:
B
,
f
:
(
b
:
B
,
a
:
A
)
=>
B
,
)
:
<
R
,
O
,
E
>
(
self
:
Kind
<
F
,
R
,
O
,
E
,
A
>
)
=>
B
;
<
R
,
O
,
E
,
A
,
B
>
(
self
:
Kind
<
F
,
R
,
O
,
E
,
A
>
,
b
:
B
,
f
:
(
b
:
B
,
a
:
A
)
=>
B
)
:
B
;
}
;
reduceRight
:
ReduceRight
<
F
>
;
}
Type Parameters
F
extends
TypeLambda
Hierarchy
Foldable
<
F
>
RightFoldable
Index
Properties
[URI]?
reduce
reduce
Right
Properties
Optional
Readonly
[URI]
"[URI]"
?:
F
Readonly
reduce
reduce
:
{
<
A
,
B
>
(
b
:
B
,
f
:
(
b
:
B
,
a
:
A
)
=>
B
,
)
:
<
R
,
O
,
E
>
(
self
:
Kind
<
F
,
R
,
O
,
E
,
A
>
)
=>
B
;
<
R
,
O
,
E
,
A
,
B
>
(
self
:
Kind
<
F
,
R
,
O
,
E
,
A
>
,
b
:
B
,
f
:
(
b
:
B
,
a
:
A
)
=>
B
)
:
B
;
}
Readonly
reduce
Right
reduceRight
:
ReduceRight
<
F
>
Settings
Member Visibility
Internal
Theme
OS
Light
Dark
On This Page
Properties
[URI]
reduce
reduce
Right
effect-ts-laws
Loading...
Adds a
reduceRight
function to Foldable.