https://github.com/zinyakov/hashmap-implementation/blob/c0871bff6071c956895d10ed8b5705137bfaf9d3/src/main/java/com/zinyakov/hashmap/models/HashMap.java#L57 Одна из фишек Optional в том, чтобы не юзать ternary :) Лучше что-то типа: ``` return matchingEntry .map(e -> e.getValue()) .orElse(null); ``` Это выглядит более читаемо, как минимум.