Kotlinify ReadableMapKeySetIterator (#43903)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/43903

Changelog: [Internal]

As part of the Sustainability Week (see [post](https://fb.workplace.com/groups/251759413609061/permalink/742797531171911/)).

Reviewed By: cortinico

Differential Revision: D55793441

fbshipit-source-id: 8963b07b7982680cda89e4b21a99653ec60609e4
This commit is contained in:
Fabrizio Cucci
2024-04-07 03:19:03 -07:00
committed by Facebook GitHub Bot
parent a05466c5b7
commit 9b54e226bd
@@ -5,15 +5,14 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.bridge;
package com.facebook.react.bridge
import com.facebook.proguard.annotations.DoNotStrip;
import com.facebook.proguard.annotations.DoNotStrip
/** Interface of a iterator for a {@link NativeMap}'s key set. */
/** Interface of a iterator for a [NativeMap]'s key set. */
@DoNotStrip
public interface ReadableMapKeySetIterator {
public fun hasNextKey(): Boolean
boolean hasNextKey();
String nextKey();
public fun nextKey(): String
}