The F# Journal just published an article about value types:
"This article take a look at how .NET value types can be used to alleviate some of the stress from the garbage collector in the context of purely functional data structures. Purely functional data structures are notoriously allocation intensitive. The creators of the OCaml programming language from which F# is descended reported that an allocation typically occurs every 5 instructions. In most cases, a single insert or update operation can be expected to incur one or more allocations. In the context of metaprogramming, for which the ML family of programming languages were originally designed and implemented, the use of heavily fragmented collections is generally an advantage because the vast majority of collections are empty or very small..."
To read this article and more, subscribe to The F# Journal today!
Background reading on the reference counting vs tracing garbage collection debate
-
Eight years ago I answered a question on Stack Overflow about the
suitability of OCaml and Haskell for soft real-time work like visualization:
"*for real-ti...
2 months ago
1 comment:
Thanks for this series of articles.
They provide deep insights that are hard or impossible to find anywhere else.
Post a Comment