Mildfunc 2019.6.10.2

dotnet add package Mildfunc --version 2019.6.10.2
NuGet\Install-Package Mildfunc -Version 2019.6.10.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Mildfunc" Version="2019.6.10.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mildfunc --version 2019.6.10.2
#r "nuget: Mildfunc, 2019.6.10.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Mildfunc as a Cake Addin
#addin nuget:?package=Mildfunc&version=2019.6.10.2

// Install Mildfunc as a Cake Tool
#tool nuget:?package=Mildfunc&version=2019.6.10.2

Mildfunc

Mildfuncとは

Mildfuncは、delegate型やメソッドをより柔軟に扱うための機能を提供するライブラリです。

Mildfuncの使い方

Mildfunc.Fn クラス

/**
 * using static で Mildfunc.Fn を指定してあげる.
 */
using static Mildfunc.Fn;
using System;

namespace ConsoleApp
{
    class Program
    {
        static int Mul(int x, int y) => x * y;

        static void Main(string[] args)
        {
            /**
             * 通常だと, ラムダ式は自動でdelegate型に推論されないため,
             * 以下のようにキャストする必要があります.
             */
            var add = (Func<int, int, int>)((x, y) => x + y);
            Console.WriteLine($"10 + 20 = { add(10, 20) }");

            /**
             * Mildfuncを利用することで, 以下のように記述を簡略化することができます.
             * 記述方法は2種類あり, どちらで記述しても同じ結果となります. 
             */
            // (1) 引数の型を明示する方法.
            //     ラムダ式を指定する場合に効果があります.
            var sub = fn( (int x, int y) => x - y );
            Console.WriteLine($"10 - 20 = { sub(10, 20) }");


            // (2) 型パラメータを指定する方法.
            //     メソッドを指定する場合に効果があります.
            var mul = fn<int, int, int>( Mul );
            Console.WriteLine($"10 * 20 = { mul(10, 20) }");
        }
    }
}

Mildfunc.Curry クラス

/**
 * using static で Mildfunc.Curry を指定してあげる.
 */
using static Mildfunc.Curry;
using System;

namespace ConsoleApp
{
    class Program
    {
        static int Mul (int x, int y) => x * y;

        static void Main(string[] args)
        {
            /**
             * curry関数を使うことで, 既存のメソッドを簡単にカリー化することが可能です.
             * 記述方法は2種類あり, どちらで記述しても同じ結果となります. 
             */
            // (1) 引数の型を明示する方法.
            //     ラムダ式をカリー化する場合に効果があります.
            var add = curry( (int x, int y) => x + y );
            Console.WriteLine($"10 + 20 = { add(10)(20) }");

            // カリー化しているため, 部分適用することも可能です.
            var add5 = add(5);
            Console.WriteLine($"add5(20) = { add5(20) }");


            // (2) 型パラメータを指定する方法.
            //     メソッドを指定する場合に効果があります.
            var mul = curry<int, int, int>( Mul );
            Console.WriteLine($"10 * 20 = { mul(10)(20) }");

            // カリー化しているため, 部分適用することも可能です.
            var mul10 = mul(10);
            Console.WriteLine($"mul10(20) = { mul10(20) }");
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2019.6.10.2 577 6/10/2019