Giter Site home page Giter Site logo

philistine-helpers's Introduction

Philistine.Helpers

Switch

This is a C# type "switch" inspired by Scala's. Each case consists of a predicate and a result selector, or for default just a result selector.

Constructor Case Statements

Constructor case statements accept an expression that represents the construction of the control object, either through the constructor or through a factory method. This doesn't need to represent how the object was actually created, but the supplied values need to match, as do parameter and property name e.g.

class Person
{
  public string Name { get; set; }
  public int Age { get; set; }
  
  public static Person Create(string name, int age)
  {
    return new Person { Name = "Bob", Age = 30 };
  }
}

var bob = new Person { Name = "Bob", Age = 30 };

bob.Switch()
  .CaseConstructed(() => Person.Create("Bob", 30), p => true)
  .Default(p => false); // returns true

bob.Switch()
  .CaseConstructed(() => new Person { Name = "Bob" }, p => true)
  .Default(p => false); // returns true

Additionally, parameters can be added to the expression which will then be supplied to the result selector, e.g.

bob.Switch()
  .CaseConstructed((string n, int i) => new Person { Name = n, Age = i }, (p, n, i) => n)
  .Value; // return true

philistine-helpers's People

Contributors

pmccloghrylaing avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.