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
While working on removing ImmutableMap and ImmutableSet I've seen a ton of different fun ways to read immutable maps, sets, and lists. If we're willing to use Java 8's function pointer things we could remove lots of duplicated code by creating readMap, readSet, and readList in StreamInput. We could probably also do something similar for writing these but I haven't thought as much about it.
The text was updated successfully, but these errors were encountered:
While working on removing
ImmutableMap
andImmutableSet
I've seen a ton of different fun ways to read immutable maps, sets, and lists. If we're willing to use Java 8's function pointer things we could remove lots of duplicated code by creatingreadMap
,readSet
, andreadList
inStreamInput
. We could probably also do something similar for writing these but I haven't thought as much about it.The text was updated successfully, but these errors were encountered: