Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1.85 KB

RFC_template.md

File metadata and controls

59 lines (38 loc) · 1.85 KB

F# RFC FS-NNNN - (Fill me in with a feature name)

The design suggestion FILL ME IN has been marked "approved in principle". This RFC covers the detailed proposal for this suggestion.

Summary

One para explanation of the feature.

Motivation

Why are we doing this? What use cases does it support? What is the expected outcome?

Detailed design

This is the bulk of the RFC. Explain the design in enough detail for somebody familiar with the language to understand, and for somebody familiar with the compiler to implement. This should get into specifics and corner-cases, and include examples of how the feature is used.

Example code:

let add x y = x + y

Drawbacks

Why should we not do this?

Alternatives

What other designs have been considered? What is the impact of not doing this?

Compatibility

Please address all necessary compatibility questions:

  • Is this a breaking change?
  • What happens when previous versions of the F# compiler encounter this design addition as source code?
  • What happens when previous versions of the F# compiler encounter this design addition in compiled binaries?
  • If this is a change or extension to FSharp.Core, what happens when previous versions of the F# compiler encounter this construct?

Unresolved questions

What parts of the design are still TBD?