Skip to content

niejn/functional-csharp-code

 
 

Repository files navigation

Functional Programming in C#

This repo contains the code samples, exercises and solutions for the book Functional Programming in C# currently available as part of the Manning Early Access Program.

Functional Programming in C#

The code samples are organized in the following projects:

  • Examples: examples used throughout the book, by chapter
  • Exercises: placeholders for you to do the exercises, compile and run them; and compare to the provided solutions
  • LaYumba.Functional: a functional library that we develop throughout the book
  • LaYumba.Functional.Data: very simple functional data structures discussed in Chapter 9
  • LaYumba.Functional.Tests: also illustrative of topics explained in the book, and useful to better understand the constructs in the library
  • Boc.Domain: an example of using F# for domain objects

Note: you are welcome to use LaYumba.Functional in your projects, and submit PRs with improvements, but the main intent of this library is pedagogical. For a more fully-fledged functional library, consider LanguageExt

Working with the code samples

Important: The code samples use .NET Standard 1.6 and .NET Core 1.1, and should compile and run on all major OS's via the dotnet CLI. .NET Core still has rough edges, so you may experience issues (with test runners, IDEs, REPLs); if you have suggestions on how to mitigate these, submit a PR or let me know via the book forum.

Prerequisites

To check this is available, type dotnet --version at the command prompt, and you should get 1.0.1 or greater

One-time setup

$ git clone git@github.com:la-yumba/functional-csharp-code.git
$ cd functional-csharp-code
$ dotnet restore

Running the tests

$ cd LaYumba.Functional.Tests
$ dotnet test

Running examples

Many code samples in the book can be run, in case you'd like to debug or "see that it works". The pattern is:

$ cd Examples
$ dotnet run HOFs
Section Command
7.1 dotnet run Greetings

Setting up the REPL

Throughout the book, I encourage readers to try things out in the REPL.

  • If you use Visual Studio, you can start the REPL by going to View > Other Windows > C# Interactive (short tutorial here)
  • On Mono, you can use the csharp command
  • There are several other REPLs available, some even run in the browser

You'll often need to import LaYumba.Functional in the REPL. In C# Interactive, this can be done like so:

#r "functional-csharp-code\LaYumba.Functional\bin\Debug\netstandard1.6\LaYumba.Functional.dll"

The path above may not work for you, in which case use an absolute path to the dll, or type Directory.GetCurrentDirectory() into the REPL to see what to use as a base for a relative path.

Next, add these imports:

using LaYumba.Functional;
using static LaYumba.Functional.F;

You're now ready to experiment with functional code right in the REPL, for example:

> Func<int, int, int> plus = (a, b) => a + b;
> Some(plus).Apply(1).Apply(2)
[Some(3)]
> Some(plus).Apply(1).Apply(None)
[None]

Doing the exercises

  • edit the code in Exercises as needed

  • edit Exercises/Program.cs to start the class you want

  • run it with:

    $ cd Exercises
    $ dotnet run
    
  • run your tests:

    $ cd Exercises
    $ dotnet test
    

About

Code samples for Functional Programming in C#

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.6%
  • F# 0.4%