MCPcopy Create free account
hub / github.com/OneUIProject/oneui-core / create

Method create

core/src/main/java/androidx/core/util/Pair.java:81–85  ·  view source on GitHub ↗

Convenience method for creating an appropriately typed pair. @param a the first object in the Pair @param b the second object in the pair @return a Pair that is templatized with the types of a and b

(A a, B b)

Source from the content-addressed store, hash-verified

79 * @return a Pair that is templatized with the types of a and b
80 */
81 @NonNull
82 @SuppressWarnings("UnknownNullness") // Generic nullness should come from type annotations.
83 public static <A, B> Pair<A, B> create(A a, B b) {
84 return new Pair<>(a, b);
85 }
86}

Callers 15

partitionMethod · 0.95
getDateRangeStringMethod · 0.95
onCreateDialogMethod · 0.45
onCreateDialogMethod · 0.45
DayOfTheWeekViewMethod · 0.45
initViewMethod · 0.45
setTextTypefaceMethod · 0.45
setDividerTextMethod · 0.45

Calls

no outgoing calls

Tested by 1

getDateRangeStringMethod · 0.76