foldr.foldr

template foldr(F...)
foldr
(
R
T
)
(,
auto ref T init
)
if (
isBidirectionalRange!R
)
if (
F.length == 1
)

Parameters

R

Bidirectional range type.

T

Type of the accumulated value.

range R

Bidirectional range.

init T

Initial value.

Return Value

Type: auto

Accumulated value.

Meta