Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 2.01 KB

slides.md

File metadata and controls

62 lines (42 loc) · 2.01 KB

Eclipse Collections

Introduction to Kata

Learning by exercises

  • Go down: Introduction
  • Go right: Kata set-up

What is Eclipse Collections?

https://www.eclipse.org/collections/

  • The best Java collections framework ever that brings happiness to your Java development :)
  • Rich, concise and readable APIs
  • Many container types including immutable collections, primitive collections, bimaps, multimaps and bags
  • Memory efficient containers

What is a Code Kata?

  • A programming exercise which helps hone your skills through practice.
  • This one is set up as a series of unit tests which fail.
  • Your task is to make them pass, using Eclipse Collections

I hear and I forget. I see and I remember. I do and I understand. -- Confucius

Eclipse Collections Code Kata

  • New concepts are introduced in the slides
  • Coding exercises are at the end of each section

Set-up Eclipse Collections Kata

pet-kata/src/tests
  • The tests are expected to fail. Your task is to make them pass, using Eclipse Collections

Start Kata