Interface HasSqrt<E>
-
- Type Parameters:
E- the expression type returned by thesqrt()method
- All Known Subinterfaces:
ToBigDecimal<T>,ToBigDecimalOrElse<T>,ToBigDecimalOrElseGet<T>,ToBigDecimalOrThrow<T>,ToByte<T>,ToByteNullable<T>,ToByteOrElse<T>,ToByteOrElseGet<T>,ToByteOrThrow<T>,ToDouble<T>,ToDoubleNullable<T>,ToDoubleOrElse<T>,ToDoubleOrElseGet<T>,ToDoubleOrThrow<T>,ToFloat<T>,ToFloatNullable<T>,ToFloatOrElse<T>,ToFloatOrElseGet<T>,ToFloatOrThrow<T>,ToInt<T>,ToIntNullable<T>,ToIntOrElse<T>,ToIntOrElseGet<T>,ToIntOrThrow<T>,ToLong<T>,ToLongNullable<T>,ToLongOrElse<T>,ToLongOrElseGet<T>,ToLongOrThrow<T>,ToShort<T>,ToShortNullable<T>,ToShortOrElse<T>,ToShortOrElseGet<T>,ToShortOrThrow<T>
public interface HasSqrt<E>Trait for expressions that has asqrt()method for getting the square root of the result from the current expression.- Since:
- 3.1.0
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Esqrt()Creates and returns an expression that returns the square root of the result from the current expression.
-
-
-
Method Detail
-
sqrt
E sqrt()
Creates and returns an expression that returns the square root of the result from the current expression.If this expression is nullable and the result was
null, then the result of the returned expression will also benull.- Returns:
- the new expression
-
-