View source code
Display the source code in std/parallelism.d from which this
page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a
Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Template std.parallelism.TaskPool.amap
template amap(functions...)
;
Contained Functions
Name | Description |
---|---|
amap | Eager parallel map. The eagerness of this function means it has less
overhead than the lazily evaluated TaskPool and should be
preferred where the memory requirements of eagerness are acceptable.
functions are the functions to be evaluated, passed as template
alias parameters in a style similar to
map .
The first argument must be a random access range. For performance
reasons, amap will assume the range elements have not yet been
initialized. Elements will be overwritten without calling a destructor
nor doing an assignment. As such, the range must not contain meaningful
data: either un-initialized objects, or
objects in their state.
|
Authors
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.