MCPcopy Create free account
hub / github.com/M66B/FairEmail / apply

Method apply

app/src/main/java/androidx/paging/DataSource.java:188–195  ·  view source on GitHub ↗
(@NonNull List<X> source)

Source from the content-addressed store, hash-verified

186 final @NonNull Function<X, Y> innerFunc) {
187 return new Function<List<X>, List<Y>>() {
188 @Override
189 public List<Y> apply(@NonNull List<X> source) {
190 List<Y> out = new ArrayList<>(source.size());
191 for (int i = 0; i < source.size(); i++) {
192 out.add(innerFunc.apply(source.get(i)));
193 }
194 return out;
195 }
196 };
197 }
198

Callers 15

prism.jsFile · 0.45
mapFunction · 0.45
onChangedFunction · 0.45
convertMethod · 0.45
lockMethod · 0.45
activateProMethod · 0.45
activateProMethod · 0.45
activateProMethod · 0.45
handleReceiptMethod · 0.45
activateProMethod · 0.45

Calls 3

sizeMethod · 0.65
addMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected