Replies: 6 comments 6 replies
-
Another way of looking at these paste few day of, what I have been playing with |
Beta Was this translation helpful? Give feedback.
-
Since f# has first class function, it's important that we are able to do this |
Beta Was this translation helpful? Give feedback.
-
Because we can defined recursive types and records and use it as the return type to unwrap itself, however the same thing we were to do with functions themselves, let me just say there doesn't seem to be a way |
Beta Was this translation helpful? Give feedback.
-
gives me a feeling that f# isn't a matured language |
Beta Was this translation helpful? Give feedback.
-
This repository is only for language suggestions, not discussions and questions, if you don't have access to StackOverflow, please post your questions in https://github.com/dotnet/fsharp/discussions, people there will help you to formulate a suggestion if necessary, thanks. |
Beta Was this translation helpful? Give feedback.
-
After some researching & playing & trying I found a way to make it work (ran in f#interactive)
The problem is I can't have however many parameters for k it's hard coded, also I had to change the operators myself, it would be nice if the language can use code generator to generate these |
Beta Was this translation helpful? Give feedback.
-
let rec Job configuration (requiredObject : SomeType) =
//do something
(fun (e : SomeType) -> Job configuration e)
I was redirected by the folks over C# discussions to here, I looked at a few discussions and I felt appropriate to post language suggestions and sometimes maybe questions on this repository that has the word suggestions in the name. I appreciate the pointer to Stack Overflow for answers, but unfortunately I don't speak english while china is blocking a lot of the websites, so I am going to post my discussions here, unless of course, I am not welcomed in this community by simply suggesting the language features
Look, folks, here's the thing : Job configuration <|
Do Something with This
<|Do Something with That
Beta Was this translation helpful? Give feedback.
All reactions