Documentation
Dlang.org
map.map
expected
map
The actual
map
function.
template
map
(alias op, Hook = Abort)
@
safe
auto
map
(
T
E
H
)
(
auto
ref
Expected
!(
T
,
E
,
H
)
self
)
if
(
(
is
(
T
==
void
) &&
is
(
typeof
(
op
()))
)
||
(
!
is
(
T
==
void
) &&
is
(
typeof
(
op
(
self.value
)))
)
)
Parameters
self
Type:
Expected
!(
T
,
E
,
H
)
an
Expected
object
Meta
Source
See Implementation
expected
map
functions
map
The actual map function.