Writes a key value into the map @param k The key @param v The value can be any supported object
(CharSequence k, Object v)
| 81 | */ |
| 82 | EntryWriter put(CharSequence k, Object v) throws IOException; |
| 83 | |
| 84 | default EntryWriter putNoEx(CharSequence k, Object v) { |
| 85 | try { |
| 86 | put(k, v); |
no outgoing calls