Could someone help me reason about how to do somet...
# arrow
c
Could someone help me reason about how to do something I think is pretty basic in FP? I know exactly how I would do it normally (without FP/arrow), but I'm trying to do this task with FP principles in mind. The idea is that I have a starting data structure that looks like
Map<String, List<Parameters>>
, and I would like to map this to a flat
List<Results>
, where the key value
String
and the
Parameters
are parameters to a network call that will return
Results
.