You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
Turn :
public interface ForEachCallback {
T forEach(Object thisArg, Value element, int index, Array<?> array);
}
into
public interface ForEachCallback<T,E> {
T forEach(Object thisArg, E element, int index, Array array);
}
The text was updated successfully, but these errors were encountered: