ofInt function

Optional<int> ofInt(
  1. int integer
)

Implementation

Optional<int> ofInt(final int integer) => Optional.of(integer);