Emik.SourceGenerators.Implicit 1.0.5

dotnet add package Emik.SourceGenerators.Implicit --version 1.0.5
NuGet\Install-Package Emik.SourceGenerators.Implicit -Version 1.0.5
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="Emik.SourceGenerators.Implicit" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Emik.SourceGenerators.Implicit --version 1.0.5
#r "nuget: Emik.SourceGenerators.Implicit, 1.0.5"
#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 Emik.SourceGenerators.Implicit as a Cake Addin
#addin nuget:?package=Emik.SourceGenerators.Implicit&version=1.0.5

// Install Emik.SourceGenerators.Implicit as a Cake Tool
#tool nuget:?package=Emik.SourceGenerators.Implicit&version=1.0.5

Emik.SourceGenerators.Implicit

NuGet package License

Source-generates implicit conversion operators that map to the respective constructors.

This project has a dependency to Emik.Morsels, if you are building this project, refer to its README first.



Example

A singularValuesWork = 1; // Valid!
A tuplesWorkToo = (2, 3); // Valid!

// Won't generate: annotated NoImplicitOperator.
// A butThisDoesNot = (4, 5, 6);

// Won't generate: would change visibility of constructor.
// A andNeitherDoesThis = (7, 8, 9, 10); 

// Won't generate: annotated NoImplicitOperator.
// B andNeitherDoesThisToo = 11; 
// B orThis = (12, 13);

public class A(int i)
{
    public A(int i, int j)
       : this(0) { }

    [NoImplicitOperator]
    public A(int i, int j, int k)
       : this(0) { }

    private A(int i, int j, int k, int l)
       : this(0) { }
}

[NoImplicitOperator]
public class B(int i)
{
    public B(int i, int j)
       : this(0) { }
}

Contribute

Issues and pull requests are welcome to help this repository be the best it can be.

License

This repository falls under the MPL-2 license.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has 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
1.0.5 338 11/2/2023
1.0.4 253 10/14/2023
1.0.3 223 10/11/2023
1.0.2 186 10/4/2023
1.0.1 261 8/22/2023
1.0.0 257 8/7/2023