다음을 통해 공유


ISequencedMap.Reversed Method

Definition

Returns a reverse-ordered view of this map.

[Android.Runtime.Register("reversed", "()Ljava/util/SequencedMap;", "GetReversedHandler:Java.Util.ISequencedMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=35)]
public Java.Util.ISequencedMap? Reversed ();
[<Android.Runtime.Register("reversed", "()Ljava/util/SequencedMap;", "GetReversedHandler:Java.Util.ISequencedMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=35)>]
abstract member Reversed : unit -> Java.Util.ISequencedMap

Returns

a reverse-ordered view of this map

Attributes

Remarks

Returns a reverse-ordered view of this map. The encounter order of mappings in the returned view is the inverse of the encounter order of mappings in this map. The reverse ordering affects all order-sensitive operations, including those on the view collections of the returned view. If the implementation permits modifications to this view, the modifications "write through" to the underlying map. Changes to the underlying map might or might not be visible in this reversed view, depending upon the implementation.

Java documentation for java.util.SequencedMap.reversed().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to