Extending wrappers & introducing functors, monads, comonads, and cowrappers#80
Draft
stefan-aws wants to merge 40 commits intomasterfrom
Draft
Extending wrappers & introducing functors, monads, comonads, and cowrappers#80stefan-aws wants to merge 40 commits intomasterfrom
stefan-aws wants to merge 40 commits intomasterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
In the past, there have been requests to include monadic constructs into Dafny (see e.g. dafny-lang/dafny#455). The main issue with providing native support has been that monads don't fit as naturally into a partly imperative language as Dafny, as they do for purely functional languages. Here, I propose that instead of further embedding monads into the language itself, we simply provide a comprehensive standard library. The PR makes the following contributions:
Wrapper.dfywith more wrappers and more functions for existing wrappersCowrapper.dfywith currently one example, the Coreader cowrapper.Functors.dfy, monads inMonads.dfy, and comonads inComonads.dfyWrapper.dfyare instances of monads, and the examples inCowrapper.dfyare instances of comonadsBy submitting this pull request, I confirm that my contribution is made under the terms of the MIT license.