Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 487 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 487 Bytes

Refactoring to functional programming in Java 8

Specification

  • The search for participants by first name in the list of members of the meetup should :
    • return no participant where there is no member found with the query.
    • return one participant when there is a member found with the query.
    • return all matching participants where there are multiple members found with the query.

Exercice

Refactoring the production code so that becomes functional.