Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Functional Programming in F#

Functional Programming in F#

Introduction to functional programming (FP) in general, viewed from a .NET developer's standpoint. In this talk, we'll take a look at FP basics, how they are implemented in .NET's own functional language (F#) and compare the concepts to traditional OO (C#) code.

We'll also take a look at some really cool use cases (hint: type providers, property-based testing, the m-word,...).

Jo Van Eyck

June 01, 2016
Tweet

More Decks by Jo Van Eyck

Other Decks in Programming

Transcript

  1. ae nv/sa Interleuvenlaan 27b, B3001 - Heverlee T +32 16

    39 30 60 F +32 16 39 30 70 www.ae.be FUN-CTIONAL PROGRAMMING IN F#
  2. DEFINITION In computer science, functional programming is a programming paradigm

    —a style of building the structure and elements of computer programs— that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data. It is a declarative programming paradigm, which means programming is done with expressions or declarations instead of statements. In functional code, the output value of a function depends only on the arguments that are input to the function, so calling a function f twice with the same value for an argument x will produce the same result f(x) each time. Eliminating side effects, i.e. changes in state that do not depend on the function inputs, can make it much easier to understand and predict the behavior of a program, which is one of the key motivations for the development of functional programming. -Wikipedia
  3. C# VNEXT • Tuple value types • Multi-value returns •

    Pattern matching • Destructuring • Local functions • …
  4. C# VNEXT • Tuple value types • Multi-value returns •

    Pattern matching • Destructuring • Local functions • …