MCPcopy Index your code
hub / github.com/ReactiveX/RxJava / apply

Method apply

src/test/java/io/reactivex/rxjava3/maybe/MaybeTest.java:244–247  ·  view source on GitHub ↗
(MaybeObserver<? super Integer> t)

Source from the content-addressed store, hash-verified

242 public void liftJust() {
243 Maybe.just(1).lift(new MaybeOperator<Integer, Integer>() {
244 @Override
245 public MaybeObserver<? super Integer> apply(MaybeObserver<? super Integer> t) throws Exception {
246 return t;
247 }
248 })
249 .test()
250 .assertResult(1);

Callers

nothing calls this directly

Calls 15

singleMethod · 0.95
justMethod · 0.95
emptyMethod · 0.95
errorMethod · 0.95
completeMethod · 0.95
errorMethod · 0.95
rangeMethod · 0.95
errorMethod · 0.95
rangeMethod · 0.95
errorMethod · 0.95
getMethod · 0.65
toFlowableMethod · 0.45

Tested by

no test coverage detected