/* * Copyright © 2018 Samuel Holland * Copyright © 2018 Jason A. Donenfeld . All Rights Reserved. * SPDX-License-Identifier: GPL-2.0-or-later */ package com.wireguard.android.util; import com.wireguard.util.Keyed; import com.wireguard.util.SortedKeyedList; /** * A list that is both sorted/keyed and observable. */ public interface ObservableSortedKeyedList> extends ObservableKeyedList, SortedKeyedList { }