Uses of Interface
org.apache.calcite.linq4j.function.FloatFunction1
-
Packages that use FloatFunction1 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 FloatFunction1 in org.apache.calcite.linq4j
Methods in org.apache.calcite.linq4j with parameters of type FloatFunction1 Modifier and Type Method Description floatDefaultEnumerable. average(FloatFunction1<T> selector)static <TSource> floatEnumerableDefaults. average(Enumerable<TSource> source, FloatFunction1<TSource> selector)Computes the average of a sequence of Float values that are obtained by invoking a transform function on each element of the input sequence.floatExtendedEnumerable. average(FloatFunction1<TSource> selector)Computes the average of a sequence of Float values that are obtained by invoking a transform function on each element of the input sequence.floatDefaultEnumerable. max(FloatFunction1<T> selector)static <TSource> floatEnumerableDefaults. max(Enumerable<TSource> source, FloatFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum Float value.floatExtendedEnumerable. max(FloatFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the maximum Float value.floatDefaultEnumerable. min(FloatFunction1<T> selector)static <TSource> floatEnumerableDefaults. min(Enumerable<TSource> source, FloatFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum Float value.floatExtendedEnumerable. min(FloatFunction1<TSource> selector)Invokes a transform function on each element of a sequence and returns the minimum Float value.floatDefaultEnumerable. sum(FloatFunction1<T> selector)static <TSource> floatEnumerableDefaults. sum(Enumerable<TSource> source, FloatFunction1<TSource> selector)Computes the sum of the sequence of Float values that are obtained by invoking a transform function on each element of the input sequence.floatExtendedEnumerable. sum(FloatFunction1<TSource> selector)Computes the sum of the sequence of Float 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 FloatFunction1 Modifier and Type Method Description floatDefaultQueryable. averageFloat(FunctionExpression<FloatFunction1<T>> selector)floatEnumerableQueryable. averageFloat(FunctionExpression<FloatFunction1<T>> selector)floatExtendedQueryable. averageFloat(FunctionExpression<FloatFunction1<TSource>> selector)Computes the average of a sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.static <T> floatQueryableDefaults. averageFloat(Queryable<T> queryable, FunctionExpression<FloatFunction1<T>> selector)Computes the average of a sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.floatQueryableFactory. averageFloat(Queryable<T> source, FunctionExpression<FloatFunction1<T>> selector)Computes the average of a sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.floatQueryableRecorder. averageFloat(Queryable<T> source, FunctionExpression<FloatFunction1<T>> selector)floatDefaultQueryable. sumFloat(FunctionExpression<FloatFunction1<T>> selector)floatEnumerableQueryable. sumFloat(FunctionExpression<FloatFunction1<T>> selector)floatExtendedQueryable. sumFloat(FunctionExpression<FloatFunction1<TSource>> selector)Computes the sum of the sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.static <T> floatQueryableDefaults. sumFloat(Queryable<T> source, FunctionExpression<FloatFunction1<T>> selector)Computes the sum of the sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.floatQueryableFactory. sumFloat(Queryable<T> source, FunctionExpression<FloatFunction1<T>> selector)Computes the sum of the sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.floatQueryableRecorder. sumFloat(Queryable<T> source, FunctionExpression<FloatFunction1<T>> selector) -
Uses of FloatFunction1 in org.apache.calcite.linq4j.function
Methods in org.apache.calcite.linq4j.function with parameters of type FloatFunction1 Modifier and Type Method Description static <T1> Function1<T1,Float>Functions. adapt(FloatFunction1<T1> f)
-