diff --git a/src/test/java/lambda/part3/exercise/Mapping.java b/src/test/java/lambda/part3/exercise/Mapping.java index c0a814a..2f6d4cc 100644 --- a/src/test/java/lambda/part3/exercise/Mapping.java +++ b/src/test/java/lambda/part3/exercise/Mapping.java @@ -32,8 +32,11 @@ public List getList() { // [T] -> (T -> R) -> [R] // [T1, T2, T3] -> (T -> R) -> [R1, R2, R3] public MapHelper map(Function f) { - // TODO - throw new UnsupportedOperationException(); + final List newList = new ArrayList<>(); + list.forEach( + (T t) -> newList.add(f.apply(t)) + ); + return new MapHelper(newList); } // [T] -> (T -> [R]) -> [R] @@ -50,6 +53,19 @@ public MapHelper flatMap(Function> f) { } } + + private static List addOneYear(List jobHistoryEntries){ + return new MapHelper(jobHistoryEntries) + .map(e -> e.withDuration(e.getDuration()+1)) + .getList(); + } + + private static List replace(List jobHistoryEntries){ + return new MapHelper(jobHistoryEntries) + .map(e -> e.withPosition(e.getPosition().replace("qa","QA"))) + .getList(); + } + @Test public void mapping() { final List employees = @@ -76,12 +92,10 @@ public void mapping() { final List mappedEmployees = new MapHelper<>(employees) - /* - .map(TODO) // change name to John .map(e -> e.withPerson(e.getPerson().withFirstName("John"))) - .map(TODO) // add 1 year to experience duration .map(e -> e.withJobHistory(addOneYear(e.getJobHistory()))) - .map(TODO) // replace qa with QA - * */ - .getList(); + .map(e -> e.withPerson(e.getPerson().withFirstName("John"))) + .map(e -> e.withJobHistory(addOneYear(e.getJobHistory()))) + .map(e -> e.withJobHistory(replace(e.getJobHistory()))) + .getList(); final List expectedResult = Arrays.asList( @@ -111,21 +125,28 @@ public void mapping() { private static class LazyMapHelper { + private List list; + private Function function; + public LazyMapHelper(List list, Function function) { + this.list=list; + this.function=function; } public static LazyMapHelper from(List list) { return new LazyMapHelper<>(list, Function.identity()); } + public List force() { - // TODO - throw new UnsupportedOperationException(); + List result = new ArrayList(); + list.forEach(e -> result.add(function.apply(e))); + return result; } + public LazyMapHelper map(Function f) { - // TODO - throw new UnsupportedOperationException(); + return new LazyMapHelper(list, function.andThen(f)); } } @@ -166,7 +187,6 @@ public LazyFlatMapHelper flatMap(Function> f) { } - @Test public void lazy_mapping() { final List employees = @@ -191,14 +211,13 @@ public void lazy_mapping() { )) ); + final List mappedEmployees = LazyMapHelper.from(employees) - /* - .map(TODO) // change name to John - .map(TODO) // add 1 year to experience duration - .map(TODO) // replace qa with QA - * */ - .force(); + .map(e -> e.withPerson(e.getPerson().withFirstName("John"))) + .map(e -> e.withJobHistory(addOneYear(e.getJobHistory()))) + .map(e -> e.withJobHistory(replace(e.getJobHistory()))) + .force(); final List expectedResult = Arrays.asList(