About 4,260,000 results
Open links in new tab
  1. oop - Functional programming vs Object Oriented programming

    I've been mainly exposed to OO programming so far and am looking forward to learning a functional language. My questions are: When do you choose functional programming over …

  2. functional programming - How can you do anything useful …

    Jun 20, 2009 · Stateless programming is just as expressive and powerful as stateful programming, it just requires a little practice to train yourself to start thinking statelessly. Of …

  3. paradigms - Functional programming and non-functional …

    Aug 23, 2008 · What advantages does functional programming provide? Functional programming allows coding with fewer potentials for bugs because each component is completely isolated. …

  4. What's a functional replacement for if-then statements?

    Functional programming doesn't mean you shouldn't execute statements one after the other - it simply means that you shouldn't have a mutable state. Each function needs to reliably behave …

  5. What is immutability and why should I worry about it?

    Many functional programming languages, such as Lisp, Haskell, Erlang, F# and Clojure, encourage immutable data structures by their very nature. It is for this reason that they are …

  6. functional programming - Monad in plain English? (For the OOP ...

    Apr 24, 2010 · It is presented as "the leading design pattern for functional programming", but the language used in the examples is Scala, which is both OOP and functional. You can read …

  7. functional programming - What is a Y-combinator? - Stack Overflow

    Jul 16, 2011 · A Y-combinator is a computer science concept from the “functional” side of things. Most programmers don't know much at all about combinators, if they've even …

  8. What are the core concepts in functional programming?

    In object-oriented programming, we might say the core concepts are: encapsulation inheritance, polymorphism What would that be in functional programming?

  9. What is the difference between procedural programming and …

    In computer science, functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions and avoids state and mutable data.

  10. functional programming - What is referential transparency

    Oct 17, 2008 · What does the term referential transparency mean? I've heard it described as "it means you can replace equals with equals" but this seems like an inadequate explanation.