121122123124125126127
* Check that the passed optional is present. * * @return the matcher on the optional */ default org.hamcrest.Matcher<OptionalDouble> optionalDoubleIsPresent() { return new OptionalDoublePresentMatcher(is(true)); }
130131132133134135136
* Check that the passed optional is not present. * * @return the matcher on the optional */ default org.hamcrest.Matcher<OptionalDouble> optionalDoubleIsNotPresent() { return new OptionalDoublePresentMatcher(not(true)); }