Support for non-copyable objects in lvalues #30
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
!READ DESCRIPTION FIRST! Not up to merge yet.
If you would be willing to adopt these changes I will also adjust
neither::Maybe
(andneither::lift
if needed). Please give feedback if this matches your design concept. Unfortunately I did not find a contribution policy in the repository. :(Contents
This relaxes the restrictions on using the library with types that are not copy-constructible. It leverages the SFINAE idiom to provide proper implementation for types like
std::unique_ptr
s. This should not change behavior of existing code, as the template candidates only apply to cases, where previously compilation would not be possible.Changes