Toggle navigation
Home
java.util.function.Function to java.util.function.Predicate
No. of Instances - 22
No. of Commits - 4
No. of Projects - {'junit5', 'CoreNLP', 'honest-profiler', 'sonarqube'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Add or Remove Method invocation
test.apply(newValue)
to
test.test(newValue)
matchingFunction.apply(new Pair(tofind[j],tokens[i]))
to
matchingFunction.test(new Pair(tofind[j],tokens[i]))
acceptWord.apply(vertex.backingLabel())
to
acceptWord.test(vertex.backingLabel())
acceptWord.apply(curr.backingLabel())
to
acceptWord.test(curr.backingLabel())
acceptWord.apply(l)
to
acceptWord.test(l)
retainFunction.apply(en.getKey())
to
retainFunction.test(en.getKey())
containsTargetFunction.apply(n.value)
to
containsTargetFunction.test(n.value)
checkTokensCompatible.apply(p)
to
checkTokensCompatible.test(p)
test.apply(returnValue)
to
test.test(returnValue)
Rename Method invocation
apply
to
test