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
As discussed in the relevant jackson-user thread, JsonGenerator#writeNumber() method lacks support for char[]. Introducing a JsonGenerator#writeNumber(char[] buffer, int offset, int length) will enable users to write numbers in their preferred format without incurring an extra allocation cost, e.g., as in JsonGenerator#writeNumber(String).
Note that #577 and #514 are relevant issues addressing a similar concern in broader sense.
The text was updated successfully, but these errors were encountered:
As discussed in the relevant jackson-user thread,
JsonGenerator#writeNumber()
method lacks support forchar[]
. Introducing aJsonGenerator#writeNumber(char[] buffer, int offset, int length)
will enable users to write numbers in their preferred format without incurring an extra allocation cost, e.g., as inJsonGenerator#writeNumber(String)
.Note that #577 and #514 are relevant issues addressing a similar concern in broader sense.
The text was updated successfully, but these errors were encountered: