some-flower-64874
10/28/2020, 9:46 AMOutput<ImmutableArray<x>>
that I want to "map" to an InputList<y>
(where y is x.Id
) - there's a step here I'm failing to take (I think I want the opposite of all...). For extra credit in F#
🙂tall-librarian-49374
10/28/2020, 11:32 AMOutput<ImmutableArray<x>> xs = ...;
InputList<string> ids = xs.Apply(v => v.Select(x => x.Id));