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
Using a non-existent key on a Flip throws a java.lang.ArrayIndexOutOfBoundsException. Should prob document in code (so that users expect it) or change.
String[] x = new String[] {"Key"};
String[][] y = new String[][] {{"Value1","Value2","Value3"}};
c.Dict dict = new c.Dict(x, y);
c.Flip flip = new c.Flip(dict);
flip.at("NOT FOUND");
The text was updated successfully, but these errors were encountered:
Using a non-existent key on a Flip throws a java.lang.ArrayIndexOutOfBoundsException. Should prob document in code (so that users expect it) or change.
The text was updated successfully, but these errors were encountered: