Uses of Interface
org.apache.calcite.linq4j.function.DoubleFunction1
-
Packages that use DoubleFunction1 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 DoubleFunction1 in org.apache.calcite.linq4j
Methods in org.apache.calcite.linq4j with parameters of type DoubleFunction1 Modifier and Type Method Description doubleDefaultEnumerable. average(DoubleFunction1<T> selector)static <TSource> doubleEnumerableDefaults. average(Enumerable<TSource> source, DoubleFunction1<TSource> selector)Computes the average of a sequence of Double values that are obtained by invoking a transform function on each element of the input sequence.doubleExtendedEnumerable. average(DoubleFunction1<TSource> selector)Computes the average of a sequence of Double values that are obtained by invoking a transform function on each element of the input sequence.doubleDefaultEnumerable. max(DoubleFunction1<T> selector)static <TSource> doubleEnumerableDefaults. max(Enumerable<TSource> source, DoubleFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum Double value.doubleExtendedEnumerable. max(DoubleFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum Double value.doubleDefaultEnumerable. min(DoubleFunction1<T> selector)static <TSource> doubleEnumerableDefaults. min(Enumerable<TSource> source, DoubleFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum Double value.doubleExtendedEnumerable. min(DoubleFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum Double value.doubleDefaultEnumerable. sum(DoubleFunction1<T> selector)static <TSource> doubleEnumerableDefaults. sum(Enumerable<TSource> source, DoubleFunction1<TSource> selector)Computes the sum of the sequence of Double values that are obtained by invoking a transform function on each element of the input sequence.doubleExtendedEnumerable. sum(DoubleFunction1<TSource> selector)Computes the sum of the sequence of Double 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 DoubleFunction1 Modifier and Type Method Description doubleDefaultQueryable. averageDouble(FunctionExpression<DoubleFunction1<T>> selector)doubleEnumerableQueryable. averageDouble(FunctionExpression<DoubleFunction1<T>> selector)doubleExtendedQueryable. averageDouble(FunctionExpression<DoubleFunction1<TSource>> selector)Computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.static <T> doubleQueryableDefaults. averageDouble(Queryable<T> queryable, FunctionExpression<DoubleFunction1<T>> selector)Computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.doubleQueryableFactory. averageDouble(Queryable<T> source, FunctionExpression<DoubleFunction1<T>> selector)Computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.doubleQueryableRecorder. averageDouble(Queryable<T> source, FunctionExpression<DoubleFunction1<T>> selector)doubleDefaultQueryable. sumDouble(FunctionExpression<DoubleFunction1<T>> selector)doubleEnumerableQueryable. sumDouble(FunctionExpression<DoubleFunction1<T>> selector)doubleExtendedQueryable. sumDouble(FunctionExpression<DoubleFunction1<TSource>> selector)Computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.static <T> doubleQueryableDefaults. sumDouble(Queryable<T> source, FunctionExpression<DoubleFunction1<T>> selector)Computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.doubleQueryableFactory. sumDouble(Queryable<T> source, FunctionExpression<DoubleFunction1<T>> selector)Computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.doubleQueryableRecorder. sumDouble(Queryable<T> source, FunctionExpression<DoubleFunction1<T>> selector) -
Uses of DoubleFunction1 in org.apache.calcite.linq4j.function
Methods in org.apache.calcite.linq4j.function with parameters of type DoubleFunction1 Modifier and Type Method Description static <T1> Function1<T1,Double>Functions. adapt(DoubleFunction1<T1> f)
-