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)
| 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. |