Uses of Interface
jdk.incubator.vector.VectorOperators.Unary
Packages that use VectorOperators.Unary
-
Uses of VectorOperators.Unary in jdk.incubator.vector
Fields in jdk.incubator.vector declared as VectorOperators.UnaryModifier and TypeFieldDescriptionstatic VectorOperators.Unary
VectorOperators.ABS
Produceabs(a)
.static VectorOperators.Unary
VectorOperators.ACOS
Produceacos(a)
.static VectorOperators.Unary
VectorOperators.ASIN
Produceasin(a)
.static VectorOperators.Unary
VectorOperators.ATAN
Produceatan(a)
.static VectorOperators.Unary
VectorOperators.CBRT
Producecbrt(a)
.static VectorOperators.Unary
VectorOperators.COS
Producecos(a)
.static VectorOperators.Unary
VectorOperators.COSH
Producecosh(a)
.static VectorOperators.Unary
VectorOperators.EXP
Produceexp(a)
.static VectorOperators.Unary
VectorOperators.EXPM1
Produceexpm1(a)
.static VectorOperators.Unary
VectorOperators.LOG
Producelog(a)
.static VectorOperators.Unary
VectorOperators.LOG10
Producelog10(a)
.static VectorOperators.Unary
VectorOperators.LOG1P
Producelog1p(a)
.static VectorOperators.Unary
VectorOperators.NEG
Produce-a
.static VectorOperators.Unary
VectorOperators.NOT
Produce~a
.static VectorOperators.Unary
VectorOperators.SIN
Producesin(a)
.static VectorOperators.Unary
VectorOperators.SINH
Producesinh(a)
.static VectorOperators.Unary
VectorOperators.SQRT
Producesqrt(a)
.static VectorOperators.Unary
VectorOperators.TAN
Producetan(a)
.static VectorOperators.Unary
VectorOperators.TANH
Producetanh(a)
.static VectorOperators.Unary
VectorOperators.ZOMO
Producea==0?0:-1
(zero or minus one).Methods in jdk.incubator.vector with parameters of type VectorOperators.UnaryModifier and TypeMethodDescriptionabstract ByteVector
ByteVector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.ByteVector.lanewise(VectorOperators.Unary op, VectorMask<Byte> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.abstract DoubleVector
DoubleVector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.DoubleVector.lanewise(VectorOperators.Unary op, VectorMask<Double> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.abstract FloatVector
FloatVector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.FloatVector.lanewise(VectorOperators.Unary op, VectorMask<Float> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.abstract IntVector
IntVector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.IntVector.lanewise(VectorOperators.Unary op, VectorMask<Integer> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.abstract LongVector
LongVector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.LongVector.lanewise(VectorOperators.Unary op, VectorMask<Long> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.abstract ShortVector
ShortVector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.ShortVector.lanewise(VectorOperators.Unary op, VectorMask<Short> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.Vector.lanewise(VectorOperators.Unary op)
Operates on the lane values of this vector.Vector.lanewise(VectorOperators.Unary op, VectorMask<E> m)
Operates on the lane values of this vector, with selection of lane elements controlled by a mask.