Pipe forwards in C#

前端 未结 4 1205
醉酒成梦
醉酒成梦 2020-12-02 14:51

Continuing my investigation of expressing F# ideas in C#, I wanted a pipe forward operator. For anything wrapped in a IEnumerable, we already have it, as you can .NextFunc()

相关标签:
4条回答
  • 2020-12-02 15:13

    Your Pipe method looks a whole lot like the Thrush Combinator. My implementation of it is very simple.

    public static T Into<T>(this T obj, Func<T, T> f)
    { return f(obj); }
    
    0 讨论(0)
  • 2020-12-02 15:19

    While it's not quite the same thing, you might be interested in my Push LINQ framework. Basically where IEnumerable<T> requires the interested party to pull data from a source, Push LINQ lets you push data through a source, and interested parties can subscribe to events corresponding to "another element has just gone past" and "the data has finished".

    Marc Gravell and I have implemented most of the standard LINQ query operators, which means you can write query expressions against data sources and do fun stuff like streaming grouping, multiple aggregations etc.

    0 讨论(0)
  • 2020-12-02 15:22

    I haven't bothered with a raw pipe, but I have tried making all references into the Maybe monad:

    public static class ReferenceExtensions
    {
        public static TOut IfNotNull<TIn, TOut>(this TIn v, Func<TIn, TOut> f)
                                        where TIn : class 
                                        where TOut: class
        {
            if (v == null)
                return null;
    
            return f(v);
        }
    }
    

    Then suppose you have an object model that lets you lookup a RecordCompany by name, and then lookup a Band within that RecordCompany, a Member of the Band, and any of these might return null, so this might throw a NullReferenceException:

    var pixiesDrummer = Music.GetCompany("4ad.com")
                             .GetBand("Pixes")
                             .GetMember("David");
    

    We can fix that:

    var pixiesDrummer = Music.GetCompany("4ad.com")
                             .IfNotNull(rc => rc.GetBand("Pixes"))
                             .IfNotNull(band => band.GetMember("David"));
    

    Hey presto, if any of those transitions return null, pixiesDrummer will be null.

    Wouldn't it be great if we could do extension methods that are operator overloads?

    public static TOut operator| <TIn, TOut>(TIn v, Func<TIn, TOut> f)
    

    Then I could pipe together my transition lambdas like this:

    var pixiesDrummer = Music.GetCompany("4ad.com")     
                         | rc => rc.GetBand("Pixes")
                         | band => band.GetMember("David");
    

    Also wouldn't it be great if System.Void was defined as a type and Action was really just Func<..., Void>?

    Update: I blogged a little about the theory behind this.

    Update 2: An alternative answer to the original question, which is roughly "How would you express the F# pipe-forward operator in C#?"

    Pipe-forward is:

    let (|>) x f = f x
    

    In other words, it lets you write a function and its first argument in the opposite order: argument followed by function. It's just a syntactic helper that assists with readability, allowing you to make use of infix notation with any function.

    This is exactly what extension methods are for in C#. Without them, we would have to write:

    var n = Enumerable.Select(numbers, m => m * 2);
    

    With them, we can write:

    var n = numbers.Select(m => m * 2);
    

    (Ignore the fact that they also let us omit the class name - that's a bonus but could also be made available for non-extension methods as it is in Java).

    So C# already solves the same problem in a different way.

    0 讨论(0)
  • 2020-12-02 15:22

    So for Piping I don't think there is expectation to check for null and not call the piped function. The function argument in many cases could easy take a null and have it handled by the function.

    Here is my implementation. I have Pipe and PipeR. Be forewarned, the PipeR is not pipe right, but just for the cases in which the target is in the opposite position for currying, because the alternate overloads allow limited fake currying of parameters.

    The nice thing about the fake currying is that you can pipe in the method name after providing the parameters, thus producing less nesting than you would with a lambda.

    new [] { "Joe", "Jane", "Janet" }.Pipe(", ", String.Join)
    

    String.Join has the IEnumerable in the last position so this works.

    "One car red car blue Car".PipeR(@"(\w+)\s+(car)",RegexOptions.IgnoreCase, Regex.IsMatch)
    

    Regex.IsMatch has the target in the first Position so PipeR works.

    Here's my example implementaion:

    public static TR Pipe<T,TR>(this T target, Func<T, TR> func)
    {
        return func(target);
    }
    
    public static TR Pipe<T,T1, TR>(this T target, T1 arg1, Func<T1, T, TR> func)
    {
        return func(arg1, target);
    }
    
    public static TR Pipe<T, T1, T2, TR>(this T target, T1 arg1, T2 arg2, Func<T1, T2, T, TR> func)
    {
        return func(arg1, arg2, target);
    }
    
    public static TR PipeR<T, T1, TR>(this T target, T1 arg1, Func<T, T1, TR> func)
    {
        return func(target, arg1);
    }
    
    public static TR PipeR<T, T1, T2, TR>(this T target, T1 arg1, T2 arg2, Func<T, T1, T2, TR> func)
    {
        return func(target, arg1, arg2);
    }
    
    0 讨论(0)
提交回复
热议问题