-
I propose we extend sequence expressions to handle ranges involving units of measure. Currently we cannot do the following:
```
let maximumDistance = 3
let minimumDistance = 1
let trials = [ min…
-
```fs
type private GetNameDelegate = delegate of Utf8JsonReader -> string
let tokenType = (GetNameDelegate(fun r -> nameof r.TokenType)).Invoke(Utf8JsonReader()) // OK
let tokenType2 = GetNameDel…
-
I'd like to open a discussion about incorporating [FSharp.Core.Fluent](https://fsprojects.github.io/FSharp.Core.Fluent/) into FSharp.Core. Or we could consider adding it as a second F# DLL referenced …
dsyme updated
3 years ago
-
# Add if! (if-bang) keyword to computation expressions
I propose we extend computation expressions with a new keyword, `if!` (if-bang), that functions a ``let!`` (let-bang) combined with an if state…
-
# Add Async.map in the Async Module
I propose we add a map function to the Async module.
The main reason is that it is so trivial to have and it would provide parity with other modules (List, Result…
nojaf updated
4 years ago
-
The gr status command currently only looks for changes in the currently checked out branch. It misses un-pushed commits in branches that aren't checked out. This is a problem for repositories where I …
-
## Feature request
#### What problem does this feature solve?
Search in Docsify works by indexing the top level sidebar content. This is fine, but as a set of documentation grows there…
-
For the very rare situation (not for search engine crawlers) where this might be useful, it might be nice to be able to update `` tags after navigating (like how `` is updated).
For reference: http:/…
-
# Bug Report
### 🔎 Search Terms
KnownKeys, never, getting known interface keys
### 🕗 Version & Regression Information
- This changed between versions 4.3.0-beta and 4.3.1-rc
#…
-
Fairly recently I've come up with a method in Shiny to create inputs and extract the user inputs dynamically. For example, this can be used to add multiple filters on the dataset, and provide multiple…