Skip to content

Option improvement#11

Open
carldebilly wants to merge 1 commit intomasterfrom
dev/cdb/option-some-as-option
Open

Option improvement#11
carldebilly wants to merge 1 commit intomasterfrom
dev/cdb/option-some-as-option

Conversation

@carldebilly
Copy link
Copy Markdown
Member

No description provided.

/// Creates an option for a given value.
/// </summary>
public static Some<T> Some<T>(T value) => new Some<T>(value);
public static Option<T> Some<T>(T value) => new Some<T>(value);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a binary breaking change.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep it is. But it should be completed anyway.

@carldebilly carldebilly force-pushed the dev/cdb/option-some-as-option branch from 47ca510 to 976b3d3 Compare August 22, 2018 17:36
@carldebilly
Copy link
Copy Markdown
Member Author

Very old PR ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants