Uses of Interface
org.apache.calcite.linq4j.function.IntegerFunction1
-
Packages that use IntegerFunction1 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 IntegerFunction1 in org.apache.calcite.linq4j
Methods in org.apache.calcite.linq4j with parameters of type IntegerFunction1 Modifier and Type Method Description intDefaultEnumerable. average(IntegerFunction1<T> selector)static <TSource> intEnumerableDefaults. average(Enumerable<TSource> source, IntegerFunction1<TSource> selector)Computes the average of a sequence of int values that are obtained by invoking a transform function on each element of the input sequence.intExtendedEnumerable. average(IntegerFunction1<TSource> selector)Computes the average of a sequence of int values that are obtained by invoking a transform function on each element of the input sequence.intDefaultEnumerable. max(IntegerFunction1<T> selector)static <TSource> intEnumerableDefaults. max(Enumerable<TSource> source, IntegerFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum int value.intExtendedEnumerable. max(IntegerFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum int value.intDefaultEnumerable. min(IntegerFunction1<T> selector)static <TSource> intEnumerableDefaults. min(Enumerable<TSource> source, IntegerFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum int value.intExtendedEnumerable. min(IntegerFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum int value.intDefaultEnumerable. sum(IntegerFunction1<T> selector)static <TSource> intEnumerableDefaults. sum(Enumerable<TSource> source, IntegerFunction1<TSource> selector)Computes the sum of the sequence of int values that are obtained by invoking a transform function on each element of the input sequence.intExtendedEnumerable. sum(IntegerFunction1<TSource> selector)Computes the sum of the sequence of int 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 IntegerFunction1 Modifier and Type Method Description intDefaultQueryable. averageInteger(FunctionExpression<IntegerFunction1<T>> selector)intEnumerableQueryable. averageInteger(FunctionExpression<IntegerFunction1<T>> selector)intExtendedQueryable. averageInteger(FunctionExpression<IntegerFunction1<TSource>> selector)Computes the average of a sequence of int values that is obtained by invoking a projection function on each element of the input sequence.static <T> intQueryableDefaults. averageInteger(Queryable<T> queryable, FunctionExpression<IntegerFunction1<T>> selector)Computes the average of a sequence of int values that is obtained by invoking a projection function on each element of the input sequence.intQueryableFactory. averageInteger(Queryable<T> source, FunctionExpression<IntegerFunction1<T>> selector)Computes the average of a sequence of int values that is obtained by invoking a projection function on each element of the input sequence.intQueryableRecorder. averageInteger(Queryable<T> source, FunctionExpression<IntegerFunction1<T>> selector)intDefaultQueryable. sumInteger(FunctionExpression<IntegerFunction1<T>> selector)intEnumerableQueryable. sumInteger(FunctionExpression<IntegerFunction1<T>> selector)intExtendedQueryable. sumInteger(FunctionExpression<IntegerFunction1<TSource>> selector)Computes the sum of the sequence of int values that is obtained by invoking a projection function on each element of the input sequence.static <T> intQueryableDefaults. sumInteger(Queryable<T> source, FunctionExpression<IntegerFunction1<T>> selector)Computes the sum of the sequence of int values that is obtained by invoking a projection function on each element of the input sequence.intQueryableFactory. sumInteger(Queryable<T> source, FunctionExpression<IntegerFunction1<T>> selector)Computes the sum of the sequence of int values that is obtained by invoking a projection function on each element of the input sequence.intQueryableRecorder. sumInteger(Queryable<T> source, FunctionExpression<IntegerFunction1<T>> selector) -
Uses of IntegerFunction1 in org.apache.calcite.linq4j.function
Methods in org.apache.calcite.linq4j.function with parameters of type IntegerFunction1 Modifier and Type Method Description static <T1> Function1<T1,Integer>Functions. adapt(IntegerFunction1<T1> f)
-