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.
Struct std.parallelism.TaskPool.WorkerLocalStorageRange
Range primitives for worker-local storage. The purpose of this is to access results produced by each worker thread from a single thread once you are no longer using the worker-local storage from multiple threads. Do not use this struct in the parallel portion of your algorithm.
struct WorkerLocalStorageRange(T)
;
The proper way to instantiate this object is to call
WorkerLocalStorage
. Once instantiated, this object behaves
as a finite random-access range with assignable, lvalue elements and
a length equal to the number of worker threads in the TaskPool
that
created it plus 1.
Authors
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.