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

Method get

app/src/main/java/androidx/paging/PagedList.java:407–415  ·  view source on GitHub ↗

Get the item in the list of loaded items at the provided index. @param index Index in the loaded item list. Must be >= 0, and < #size() @return The item at the passed index, or null if a null placeholder is at the specified position. @see #size()

(int index)

Source from the content-addressed store, hash-verified

405 * @see #size()
406 */
407 @Override
408 @Nullable
409 public T get(int index) {
410 T item = mStorage.get(index);
411 if (item != null) {
412 mLastItem = item;
413 }
414 return item;
415 }
416
417 /**
418 * Load adjacent items to passed index.

Callers 15

drawMethod · 0.45
drawMethod · 0.45
verifyAnswerMethod · 0.45
verifyNsecMethod · 0.45
verifyMethod · 0.45
combineMethod · 0.45
getDsDigestCalculatorMethod · 0.45
getSignatureVerifierMethod · 0.45
applyNotificationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected