ADD week 5
This commit is contained in:
		| @@ -0,0 +1,42 @@ | ||||
| package androidx.savedstate; | ||||
|  | ||||
| import android.view.View; | ||||
| import kotlin.Metadata; | ||||
| import kotlin.jvm.functions.Function1; | ||||
| import kotlin.jvm.internal.Intrinsics; | ||||
| import kotlin.sequences.SequencesKt; | ||||
|  | ||||
| /* compiled from: ViewTreeSavedStateRegistryOwner.kt */ | ||||
| @Metadata(d1 = {"\u0000\u0016\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0003\u001a\u0013\u0010\u0000\u001a\u0004\u0018\u00010\u0001*\u00020\u0002H\u0007¢\u0006\u0002\b\u0003\u001a\u001b\u0010\u0004\u001a\u00020\u0005*\u00020\u00022\b\u0010\u0006\u001a\u0004\u0018\u00010\u0001H\u0007¢\u0006\u0002\b\u0007¨\u0006\b"}, d2 = {"findViewTreeSavedStateRegistryOwner", "Landroidx/savedstate/SavedStateRegistryOwner;", "Landroid/view/View;", "get", "setViewTreeSavedStateRegistryOwner", "", "owner", "set", "savedstate_release"}, k = 2, mv = {1, 8, 0}, xi = 48) | ||||
| /* loaded from: classes.dex */ | ||||
| public final class ViewTreeSavedStateRegistryOwner { | ||||
|     public static final void set(View view, SavedStateRegistryOwner savedStateRegistryOwner) { | ||||
|         Intrinsics.checkNotNullParameter(view, "<this>"); | ||||
|         view.setTag(R.id.view_tree_saved_state_registry_owner, savedStateRegistryOwner); | ||||
|     } | ||||
|  | ||||
|     public static final SavedStateRegistryOwner get(View view) { | ||||
|         Intrinsics.checkNotNullParameter(view, "<this>"); | ||||
|         return (SavedStateRegistryOwner) SequencesKt.firstOrNull(SequencesKt.mapNotNull(SequencesKt.generateSequence(view, new Function1<View, View>() { // from class: androidx.savedstate.ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$1 | ||||
|             @Override // kotlin.jvm.functions.Function1 | ||||
|             public final View invoke(View view2) { | ||||
|                 Intrinsics.checkNotNullParameter(view2, "view"); | ||||
|                 Object parent = view2.getParent(); | ||||
|                 if (parent instanceof View) { | ||||
|                     return (View) parent; | ||||
|                 } | ||||
|                 return null; | ||||
|             } | ||||
|         }), new Function1<View, SavedStateRegistryOwner>() { // from class: androidx.savedstate.ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$2 | ||||
|             @Override // kotlin.jvm.functions.Function1 | ||||
|             public final SavedStateRegistryOwner invoke(View view2) { | ||||
|                 Intrinsics.checkNotNullParameter(view2, "view"); | ||||
|                 Object tag = view2.getTag(R.id.view_tree_saved_state_registry_owner); | ||||
|                 if (tag instanceof SavedStateRegistryOwner) { | ||||
|                     return (SavedStateRegistryOwner) tag; | ||||
|                 } | ||||
|                 return null; | ||||
|             } | ||||
|         })); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user