Emik.SourceGenerators.Implicit
1.0.8
dotnet add package Emik.SourceGenerators.Implicit --version 1.0.8
NuGet\Install-Package Emik.SourceGenerators.Implicit -Version 1.0.8
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.8" />
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.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Emik.SourceGenerators.Implicit, 1.0.8"
#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.8 // Install Emik.SourceGenerators.Implicit as a Cake Tool #tool nuget:?package=Emik.SourceGenerators.Implicit&version=1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Emik.SourceGenerators.Implicit
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.