Thanks for writing the post Keith. How would you compare Fluo's Bytes to Guava's ImmutableList<Byte>?
Bytes would be more efficient at face value because it used a byte[] internally rather than an Object[] (that is a Byte[]). Apart from that, I imagine that the two implementations share a lot of functionality, such as how to handle sub-arrays of a Bytes (= sublists of an immutable list, which Guava implements very nicely). Did Bytes take inspiration from Guava or was it built from the ground up? On Nov 10, 2016 1:11 PM, "Keith Turner" <[email protected]> wrote: I just added a new blog post to the Fluo website. http://fluo.apache.org/blog/2016/11/10/immutable-bytes/
