SchlenkR
SchlenkR
Thank you for the issue report. Unfortunately, I cannot reproduce it. If you have further info, please share them. In my test, I use VS2022, .Net SDK 6.0.304 and a...
Thanks for the info. I'll investigate and see if that might be a bug in .Net 7 or if FsHttp is doing something wrong that might have been masked before...
>One nit-pick, though: I wouldn't expect to see this defined for 'T seq -- only for the non-lazy collections `Seq.partition` does indeed not exist, but there are aggregation functions like...
As @dsyme noted, `partitionBy` or `partitionWith` might be better names. In List module, suffix usage is: * `by` is always used for functions taking a `'T -> 'Key` projection (used...
From my understanding, the initial example doesn't simplify _directly_ to `partition`, because there's a mapping involved from int to float for the last part. Another example is this: ```fsharp module...
I don't like `choose` fot this, because `choose` is about filtering out elements. Partitioning is separating elements from each other while retaining all original elements. This is what happens in...
>Again, what about partition2, partition3, partition4 etc? In this case, `partition` would be a special case of `partition2`, and `partition(n)` are all on that level of generalization. IMHO, just adding...
@dsyme Is that something that's likely to happen ("approved-in-principle"), and - if so - a "good first issue"? Or should I close it?
I find it hard to give an apropriate answer to the proposal, because * there is nothing proposed * there is no question asked (if it would be a question,...
> Is it possible to add an operator to the core library that apply a function for each case of the DU The key point is to understand that the...