MLLib is the file mllib.dll that comes with the F# distribution. The source for MLLib is also included. It supports a set of F# modules that are pretty close to a strong subset of the OCaml 3.06 standard libraries. This allows a lot of code to be cross-compiled between OCaml and F#. Not all OCaml modules are supported, but really useful ones like Set, Map, Hashtbl, Array, List and the like are. Modules like Sys are less useful unless you are cross-compiling - if you are using the .NET libraries directly then you can just use functions in places like [System.AppDomain.CurrentDomain] to do more powerful things.
The Unix module is not supported in MLLib, but pretty much all the functionality and much more is available in the .NET libraries, e.g. System.Net.Socket.
MLLib is a library that gives a good degree of compatibility with the OCaml 3.06 standard libraries
7/27/2005 6:34:40 AM - -213.199.128.147
OCaml is the ML dialect and implementation that acted as one of the inspirations for F#
7/9/2006 12:49:17 PM - -81.146.14.140
MLLib is a library that gives a good degree of compatibility with the OCaml 3.06 standard libraries
7/27/2005 6:34:40 AM - -213.199.128.147
MLLib is a library that gives a good degree of compatibility with the OCaml 3.06 standard libraries
7/27/2005 6:34:40 AM - -213.199.128.147
OCaml is the ML dialect and implementation that acted as one of the inspirations for F#
7/9/2006 12:49:17 PM - -81.146.14.140
OCaml is the ML dialect and implementation that acted as one of the inspirations for F#
7/9/2006 12:49:17 PM - -81.146.14.140
OCaml is the ML dialect and implementation that acted as one of the inspirations for F#
7/9/2006 12:49:17 PM - -81.146.14.140
The Set module implements sets as binary trees. This is an incredibly useful data structure.
7/22/2005 9:07:53 AM - -213.199.128.147
The Map module implements dictionaries, using binary trees under the hood. This is an incredibly useful data structure.
7/22/2005 9:12:00 AM - -213.199.128.155
Lists are one of the most useful F# data structures
11/24/2007 7:04:12 AM - -68.252.94.21
MLLib is a library that gives a good degree of compatibility with the OCaml 3.06 standard libraries