cache1_1<R, S1, P1> function
- R Function(P1) f(
- S1
Example:
var selector = cache1_1((List<String> state) =>
(String startString) =>
state.where((str) => str.startsWith(startString)).toList());
Implementation
R Function(P1) Function(S1) cache1_1<R, S1, P1>(
R Function(P1) Function(S1) f,
) =>
c.cache1_1(f);