Uses of Interface
org.apache.calcite.linq4j.function.LongFunction1
-
Packages that use LongFunction1 Package Description org.apache.calcite.linq4j Language-integrated query for Java (linq4j) main package.org.apache.calcite.linq4j.function Contains definitions of functions and predicates. -
-
Uses of LongFunction1 in org.apache.calcite.linq4j
Methods in org.apache.calcite.linq4j with parameters of type LongFunction1 Modifier and Type Method Description longDefaultEnumerable. average(LongFunction1<T> selector)static <TSource> longEnumerableDefaults. average(Enumerable<TSource> source, LongFunction1<TSource> selector)Computes the average of a sequence of long values that are obtained by invoking a transform function on each element of the input sequence.longExtendedEnumerable. average(LongFunction1<TSource> selector)Computes the average of a sequence of long values that are obtained by invoking a transform function on each element of the input sequence.longDefaultEnumerable. max(LongFunction1<T> selector)static <TSource> longEnumerableDefaults. max(Enumerable<TSource> source, LongFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum long value.longExtendedEnumerable. max(LongFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum long value.longDefaultEnumerable. min(LongFunction1<T> selector)static <TSource> longEnumerableDefaults. min(Enumerable<TSource> source, LongFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum long value.longExtendedEnumerable. min(LongFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum long value.longDefaultEnumerable. sum(LongFunction1<T> selector)static <TSource> longEnumerableDefaults. sum(Enumerable<TSource> source, LongFunction1<TSource> selector)Computes the sum of the sequence of long values that are obtained by invoking a transform function on each element of the input sequence.longExtendedEnumerable. sum(LongFunction1<TSource> selector)Computes the sum of the sequence of long values that are obtained by invoking a transform function on each element of the input sequence.Method parameters in org.apache.calcite.linq4j with type arguments of type LongFunction1 Modifier and Type Method Description longDefaultQueryable. averageLong(FunctionExpression<LongFunction1<T>> selector)longEnumerableQueryable. averageLong(FunctionExpression<LongFunction1<T>> selector)longExtendedQueryable. averageLong(FunctionExpression<LongFunction1<TSource>> selector)Computes the average of a sequence of long values that is obtained by invoking a projection function on each element of the input sequence.static <T> longQueryableDefaults. averageLong(Queryable<T> queryable, FunctionExpression<LongFunction1<T>> selector)Computes the average of a sequence of long values that is obtained by invoking a projection function on each element of the input sequence.longQueryableFactory. averageLong(Queryable<T> source, FunctionExpression<LongFunction1<T>> selector)Computes the average of a sequence of long values that is obtained by invoking a projection function on each element of the input sequence.longQueryableRecorder. averageLong(Queryable<T> source, FunctionExpression<LongFunction1<T>> selector)longDefaultQueryable. sumLong(FunctionExpression<LongFunction1<T>> selector)longEnumerableQueryable. sumLong(FunctionExpression<LongFunction1<T>> selector)longExtendedQueryable. sumLong(FunctionExpression<LongFunction1<TSource>> selector)Computes the sum of the sequence of long values that is obtained by invoking a projection function on each element of the input sequence.static <T> longQueryableDefaults. sumLong(Queryable<T> source, FunctionExpression<LongFunction1<T>> selector)Computes the sum of the sequence of long values that is obtained by invoking a projection function on each element of the input sequence.longQueryableFactory. sumLong(Queryable<T> source, FunctionExpression<LongFunction1<T>> selector)Computes the sum of the sequence of long values that is obtained by invoking a projection function on each element of the input sequence.longQueryableRecorder. sumLong(Queryable<T> source, FunctionExpression<LongFunction1<T>> selector) -
Uses of LongFunction1 in org.apache.calcite.linq4j.function
Methods in org.apache.calcite.linq4j.function with parameters of type LongFunction1 Modifier and Type Method Description static <T1> Function1<T1,Long>Functions. adapt(LongFunction1<T1> f)
-