You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by rostero1 August 19, 2023
I have a dataset:
type Data = { id: number; name: string; supply: number };
type Results = Data[];
How can I write a transducer that will give me{ uniqNames: string[], uniqSupply: number[] }, where names are all the uniq names and unique supply. I also need each result sorted both ascending.
The text was updated successfully, but these errors were encountered:
Add support for
transjuxt
that'd behave similar to:Discussed in #407
Originally posted by rostero1 August 19, 2023
I have a dataset:
How can I write a transducer that will give me
{ uniqNames: string[], uniqSupply: number[] }
, where names are all the uniq names and unique supply. I also need each result sorted both ascending.The text was updated successfully, but these errors were encountered: