• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Image from Amazon
Title: Eclipse Collections Categorically: Level up your programming game
Author(s):  Donald Rabb
Publisher: Sensible Symmetry LLC

Summary

Amazon wrote:
For Java developers, this is a book for your desk, not just your bookshelf. With over 200 color syntax highlighted code examples, Eclipse Collections Categorically shows how to make your Java collections code easier to write and review. More than a coder’s cookbook, Eclipse Collections Categorically recounts how the author organized a formidable Java interface with over a hundred methods into basic functional categories, such as counting, filtering, aggregating, and converting.

It’s a chronicle of one developer’s journey, interwoven with insights into how code can be written concisely and with elegance. It details strategies for making a large-scale application programming interface easier for developers to understand. A bird’s-eye view of the Eclipse Collections open source library and its counterparts coupled with a street-level take on the design decisions that go into creating and enhancing an API of any kind, in any language.

Collections handling is at the heart of computing. The algorithms for creating, inspecting, converting, filtering and combining data collections are vital parts of any developer’s toolkit. In an object-oriented language, collections can and should be more than simply receptacles for data. They can also incorporate the actions—the methods—for acting on the data they hold. The collections themselves provide the necessary logic. That is one key innovation of Eclipse Collections for Java developers.



Where to get it?
  • Amazon.com


  • Related Websites
    Eclipse Collections
    COMMENTS:
     
    author & internet detective
    Posts: 42173
    937
    Eclipse IDE VI Editor Java
    • Likes 1
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    I wish “Eclipse Collections Categorically: Level up your programming game” existed when I first use Eclipse Collections.  n the preface, Don compares Clipper, Smalltalk and Java (pre Java 8) to give a feel for the differences in syntax. Eclipse Collections was invented before Java supported lambdas so this is helpful in understanding the environment it was created in. There's also an appendix with more on Smalltalk which I found interesting. Speaking of history, Don goes briefly explains 20 years of this library evolving from Caramel to Gs Collections to Eclipse collections.

    The bulk of the book is going through the features of the library with annotated examples. There are useful comparison throughout like to Streams. Things not available in the JDK like using of() with a SortedSet are highlighted. I especially liked the feature compare collect() in JDK streams vs Eclipse Collections.

    Concepts are well explained like eager vs lazy. The code examples are fun and there are some running themes like United States Presidents are used in a bunch of examples.

    Chapter 11 was great by pulling together concepts from earlier in the book. I hadn't picked up on the term “fused methods” earlier on.

    Also, the book is in color which is great for some of the diagrams (like class/interface diagrams) and makes the code feel very much like an IDE. Speaking of code examples, most of them have a “cost” visual showing how easy or hard they are to read. And there's a table early on in the book showing how that cost is calculated if curious. You don't need to remember that though. The cost is comparative so ones with a lower cost are definitely easier to read.

    Chapters end with a table summarizing the APIs covered. With over 200 code examples and over 50 reference tables, this book is great for learning the library, deepening your understanding of it or even appreciating it more. (This matches the target audience of Java devs who have or haven't used Eclipse collection along with library designers.) Thanks Don!

    I give this book 10 out of 10 horseshoes.
     
    Did you miss me? Did you miss this tiny ad?
    Clean our rivers and oceans from home
    https://www.kickstarter.com/projects/paulwheaton/willow-feeders
    reply
      Bookmark Topic Watch Topic
    • New Topic