* @return the matcher on the optional
*/
default org.hamcrest.Matcher<OptionalDouble> optionalDoubleIs(
org.hamcrest.Matcher<? super Double> subMatcher) {
return both((org.hamcrest.Matcher) optionalDoubleIsPresent()).and(
new OptionalDoubleMatcher(subMatcher));
}