Powerpack F # Documentation

I was wondering if anyone could tell me about any decent documentation for the F # Powerpack library. Thanks in advance.

Amir

+4
source share
2 answers

As I know, F # powerpack has no official documentation. He had one option for version F # 1.9.6.x (something like that) posted in a Microsoft study (not MSDN).

You can learn its use from blog posts and books:

There are several examples on the PowerPack homepage .

Expert F # 2.0 by Don Syme et. al actually covered a lot of things in PowerPack. For instance. matrix and vector in chapter 10, some asynchronous library for network / network in chapter 13, lexing and parsing in chapter 16, as well as the theory underlying F # Linq in chapter 9.

There should also be many blog posts for F # PowerPack.

If you need to understand what is really available, you want to go to the source code, especially the .fsi files containing the prototypes of the functions.

+2
source

I am afraid there is currently no complete documentation for F # PowerPack. The homepage contains some basic information with a few links, but you may have to rely on your favorite search engine and blogs.

What part of PowerPack are you interested in?

In addition, I have several (almost finished) articles on numerical functionality in PowerPack, so if this is what you are looking for, I can send you a draft (before I finally publish them).

+2
source

Source: https://habr.com/ru/post/1340892/


All Articles