* @return the matcher on the optional
*/
default org.hamcrest.Matcher<OptionalInt> optionalIntIs(
org.hamcrest.Matcher<? super Integer> subMatcher) {
return both((org.hamcrest.Matcher) optionalIntIsPresent()).and(
new OptionalIntMatcher(subMatcher));
}