About 20,400,000 results
Open links in new tab
  1. What is the F# language created to accomplish? - Stack Overflow

    Apr 13, 2011 · F# is used for financial and scientific applications in particular. C# was created for Microsoft to have a modern C-like language since they were restricted from extending Java to take …

  2. In F# what does the >> operator mean? - Stack Overflow

    Nov 19, 2014 · 1 According to F# Symbol and Operator Reference it is Forward Function Composition operator.

  3. What are the benefits of using C# vs F# or F# vs C#? [closed]

    Jun 5, 2009 · F# is essentially the C++ of functional programming languages. They kept almost everything from Objective Caml, including the really stupid parts, and threw it on top of the .NET …

  4. Does F# have the ternary ?: operator? - Stack Overflow

    Feb 17, 2015 · Does F# have the ternary ?: operator? Asked 10 years, 9 months ago Modified 9 years, 7 months ago Viewed 21k times

  5. .net - C# / F# Performance comparison - Stack Overflow

    Sep 27, 2008 · Is there any C#/F# performance comparison available on web to show proper usage of new F# language?

  6. f# - What's a functional replacement for if-then statements? - Stack ...

    Given F#'s nature it's fairly easy to just transport my C# directly, but I'm having difficulties turning it functional. Every time I reach such an if statement in C#, and I'm trying to transport it to F#, I get …

  7. f# - Object initialization syntax - Stack Overflow

    Mar 29, 2016 · I'm just starting out with F# and I can't find the syntax to do object initialization like in C# 3. I.e. given this: public class Person { public DateTime BirthDate { get; set; } public string

  8. f# - How to combine Option and Result - Stack Overflow

    Oct 2, 2020 · I think the existing answer from Gus answers your question about the name of the pattern. In Haskell, this is achieved using monad transformers and the F#+ library lets you do this in F# too. …

  9. How read a file into a seq of lines in F# - Stack Overflow

    Mar 3, 2010 · How read a file into a seq of lines in F# Asked 15 years, 9 months ago Modified 6 years ago Viewed 47k times

  10. f# - Why does the pipe operator work? - Stack Overflow

    Edit: In F# what you're really doing with a method call is taking a function and then applying it to the parameter that follows, so in your example it would be List.map (fun x -> x * x * x) is applied to …