Skip to content

Instantly share code, notes, and snippets.

@knunery
knunery / paracomp.fsx
Created November 14, 2015 16:55 — forked from cloudRoutine/paracomp.fsx
Heterogeneous Parallel Async Composition Operator
(*
Heterogeneous Parallel Async Composition Operator
- an evolution of http://jackfoxy.com/transparent-heterogeneous-parallel-async-with-fsharp/
*)
type 'T Parallel =
private {
Compute : obj Async []
Unpack : obj [] -> int -> 'T
}