MCPcopy
hub / github.com/jOOQ/jOOQ / arrayNoneMatch

Method arrayNoneMatch

jOOQ/src/main/java/org/jooq/impl/DSL.java:24364–24368  ·  view source on GitHub ↗

The ARRAY_NONE_MATCH function. Check if none of the elements of an array match a given predicate. @param array The array to be checked. @param predicate The predicate that must be false for all elements.

(T[] array, Function1<? super Field<T>, ? extends Condition> predicate)

Source from the content-addressed store, hash-verified

24362 * @param predicate The predicate that must be false for all elements.
24363 */
24364 @NotNull
24365 @Support({ CLICKHOUSE, DUCKDB, H2, HSQLDB, POSTGRES, TRINO, YUGABYTEDB })
24366 public static <T> Condition arrayNoneMatch(T[] array, Function1<? super Field<T>, ? extends Condition> predicate) {
24367 return new ArrayNoneMatch<>(Tools.field(array), DSL.lambda(array, predicate));
24368 }
24369
24370 /**
24371 * The <code>ARRAY_NONE_MATCH</code> function.

Callers

nothing calls this directly

Calls 2

fieldMethod · 0.95
lambdaMethod · 0.95

Tested by

no test coverage detected