问我们 提议或找到一种工具、图书馆或偏袒场外资源的问题,在Stack Overflow,因为它们往往吸引有意见的答复和垃圾邮件。 相反, 问题以及迄今为止为解决这一问题所做的工作。
Closed 8 years ago.
您能否推荐一个开放源图书馆,在F#中提供通用型号,用于基础设施建设和基本算法(NFA至DFA的转变,最小化......)?
我的第一个想法是使用国家机器mon,它已经多次被捆绑/写/讨论/制作,下面几处提及。
http://fsharpcode.blogspot.com/2008/12/f-state-monad-type-state-state-state-of.html
http://codebetter.com/blogs/matthew.podwysocki/archive/2009/12/30/much-ado-about-monads-state-edition.aspx
although this doesn t give you the translations you want... Might be a place to start.
或许不是你在寻找一些有价证券的快速和不附带方式,就是用/fsyacc为贵方武装部队写一个同等的免费图表?
它不符合你的要求: 这在C#中,似乎并不支持向财务部翻译或尽量减少。 至少可以从F#中引出,可以用作起点。 我从未使用过它,因此我可以说出它是否适合或质量。
I have a number of events that happen in a game. I want to control the time and order at which these events occur. For example: Event 1: Show some text on screen for N frames & play a sound ...
Is there an easy way to create Silverlight 3 applications with F# (October CTP)? I have seen the F# for Silverlight, but that only works with the May CTP. I am using Visual Studio Integrated Shell ...
In F# I want to transform a list of chars into a string. Consider the following code: let lChars = [ a ; b ; c ] If I simply do lChars.ToString, I get "[ a ; b ; c ]". I m trying to get "abc". I ...
I m reading a file(a flash swf) from .Net 3.5 that has a header which states whether the body of the file/Stream is compressed or not. However, I m having problems-after I rewrap the basic File ...
Let s say I have a binary tree data structure defined as follows type a tree = | Node of a tree * a * a tree | Nil I have an instance of a tree as follows: let x = Node (Node (...
(Background: I ve been thinking about doing a presentation on F# and functional programming. From experience, I think that the wow factor of pattern matching and type inference is not necessarily ...
I recently began to read some F# related literature, speaking of "Real World Functional Programming" and "Expert F#" e. g.. At the beginning it s easy, because I have some background in Haskell, and ...
As part of a project I have assigned myself as a way of improving my knowledge of F# and functional programming in general, I am attempting to write a string pattern-matching algorithm from scratch ...