Hopac 0.0.0.42
See the version list below for details.
dotnet add package Hopac --version 0.0.0.42
NuGet\Install-Package Hopac -Version 0.0.0.42
<PackageReference Include="Hopac" Version="0.0.0.42" />
paket add Hopac --version 0.0.0.42
#r "nuget: Hopac, 0.0.0.42"
// Install Hopac as a Cake Addin #addin nuget:?package=Hopac&version=0.0.0.42 // Install Hopac as a Cake Tool #tool nuget:?package=Hopac&version=0.0.0.42
Inspired by languages like Concurrent ML and Cilk, Hopac is a library for F# with the aim of making it easier to write efficient parallel, asynchronous, concurrent and reactive programs. Hopac is licensed under a MIT-style license. See project website for further information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages (60)
Showing the top 5 NuGet packages that depend on Hopac:
Package | Downloads |
---|---|
Logary
Package Description |
|
Http.fs
A simple functional HTTP client library for F# |
|
Logary.Targets.DB
Logary is a high performance, multi-target logging, metric and health-check library for mono and .Net. |
|
Logary.Adapters.Topshelf
Package Description |
|
Logary.Adapters.log4net
Logary is a high performance, multi-target logging, metric and health-check library for mono and .Net. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.5.1 | 89,650 | 7/5/2021 |
0.5.0 | 29,194 | 11/22/2020 |
0.4.1 | 109,198 | 9/21/2018 |
0.3.23 | 380,875 | 9/30/2016 |
0.3.22 | 27,632 | 9/27/2016 |
0.3.21 | 22,219 | 9/25/2016 |
0.3.20 | 1,345 | 9/22/2016 |
0.3.19 | 1,418 | 9/22/2016 |
0.3.18 | 1,446 | 9/21/2016 |
0.3.17 | 1,468 | 9/12/2016 |
0.3.16 | 1,296 | 9/12/2016 |
0.3.14 | 3,013 | 9/7/2016 |
0.3.13 | 43,039 | 8/24/2016 |
0.3.12 | 3,661 | 8/21/2016 |
0.3.11 | 1,319 | 8/20/2016 |
0.3.10 | 1,330 | 8/16/2016 |
0.3.9 | 1,340 | 8/14/2016 |
0.3.8 | 1,312 | 8/13/2016 |
0.3.7 | 10,948 | 8/8/2016 |
0.3.6 | 17,912 | 8/6/2016 |
0.3.5 | 1,232 | 8/6/2016 |
0.3.4 | 3,476 | 8/5/2016 |
0.2.1 | 104,703 | 6/5/2016 |
0.2.0 | 1,546 | 6/1/2016 |
0.1.3 | 177,140 | 12/15/2015 |
0.1.2 | 1,442 | 11/27/2015 |
0.1.1 | 1,378 | 11/24/2015 |
0.1.0 | 15,395 | 11/23/2015 |
0.0.0.48 | 2,840 | 7/15/2015 |
0.0.0.47 | 1,414 | 5/27/2015 |
0.0.0.46 | 3,144 | 5/24/2015 |
0.0.0.45 | 2,188 | 4/10/2015 |
0.0.0.44 | 2,611 | 3/2/2015 |
0.0.0.43 | 2,380 | 2/28/2015 |
0.0.0.42 | 2,086 | 2/27/2015 |
0.0.0.41 | 4,358 | 2/11/2015 |
0.0.0.40 | 3,584 | 2/6/2015 |
0.0.0.39 | 3,664 | 2/1/2015 |
0.0.0.38 | 2,635 | 1/24/2015 |
0.0.0.37 | 4,220 | 1/21/2015 |
0.0.0.36 | 2,056 | 1/20/2015 |
0.0.0.33 | 1,585 | 12/11/2014 |
Distribute work more eagerly.
Name worker threads.
Added monadic composition operator `>=>` for jobs.
Updated documentation.
Tuning streams.
Tweaked Promisesc.
Starting to benchmark streams.
Avoid an allocation when choosing over lazy promises.
Added `Stream.ofObservableOnMain`.
Added `Async.getMain`.
Added `Stream.ofObservableOn` and `Stream.ofObservable`.
Added `IObservable<_>.onceAlt`.
Renamed `withNack` as `withNackJob` and `wrapAbort` as `wrapAbortJob`.
Added `Alt.wrapAbortFun`.
Added `Alt.choosy`, which is an optimized version of `Alt.choose` for arrays.
Added `Job.Scheduler.bind` for wrapping external asynchronous events.
Added `Alt.withNackFun`.
Inlineable `withNack` avoids closure allocation.
Added experimental support for running async comptations on the main synchronization context, which must be explicitly configured by application code.
Added `IObservable<'x>.onceAltOn` extension method for conveniently interfacing Hopac with suitable observables.
Added `TopLevel.startDelay` and `TopLevel.queueDelay` for convenience.
Renamed `Builder.Join` to `Builder.Plus` and recognized that `Zero? must also be abstract.