MCPcopy Create free account
hub / github.com/BaseXdb/basex / any

Method any

basex-core/src/main/java/org/basex/util/Checks.java:17–17  ·  view source on GitHub ↗

Returns true if at least one value check is successful. @param values values to check @return result of check

(final Iterable<T> values)

Source from the content-addressed store, hash-verified

15 * @return result of check
16 */
17 default boolean any(final Iterable<T> values) {
18 for(final T value : values) if(ok(value)) return true;
19 return false;
20 }

Callers 15

bestQfMethod · 0.80
simplifyMethod · 0.80
toRangeMethod · 0.80
optimizeMethod · 0.80
removeEmptyMethod · 0.80
rewriteMethod · 0.80
hasMethod · 0.80
matchingTypesMethod · 0.80
optimizeMethod · 0.80
instanceOfMethod · 0.80
simplifyMethod · 0.80
entryMethod · 0.80

Calls

no outgoing calls

Tested by 1

instanceOfMethod · 0.64