Function foldr.foldr
auto foldr(R, T)
(
R range,
auto ref T init
)
if (isBidirectionalRange!R);
Parameters
Name | Description |
---|---|
R | Bidirectional range type. |
T | Type of the accumulated value. |
range | Bidirectional range. |
init | Initial value. |
Returns
Accumulated value.