TimurMahammadov / google-collections

Automatically exported from code.google.com/p/google-collections
Apache License 2.0
0 stars 0 forks source link

Functions need to be serializable and have equals() and hashCode() #29

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Also, related classes like a TransformedList need likewise to be serializable.

Original issue reported on code.google.com by kevin...@gmail.com on 31 Oct 2007 at 8:41

GoogleCodeExporter commented 9 years ago
This might go hand-in-hand with a class like Ordering.java, but for functions:
  List<Customers> = ...
  Iterable<Integer> ids = Iterables.transform(Customer.ID_FUNCTION, customers);

vs.
  List<Customers> = ...
  Iterable<Integer> ids = Customer.ID_FUNCTION.transform(customers);

Original comment by limpbizkit on 1 Nov 2007 at 1:57

GoogleCodeExporter commented 9 years ago
Yes, see:
http://code.google.com/p/google-collections/issues/detail?id=11

Original comment by kevin...@gmail.com on 1 Nov 2007 at 3:30

GoogleCodeExporter commented 9 years ago
fixed by mick.

Original comment by kevin...@gmail.com on 24 Mar 2008 at 8:28