* @return the matcher on the optional
*/
default org.hamcrest.Matcher<OptionalLong> optionalLongIs(
org.hamcrest.Matcher<? super Long> subMatcher) {
return both((org.hamcrest.Matcher) optionalLongIsPresent()).and(
new OptionalLongMatcher(subMatcher));
}