cosh

open fun <Context : Any> cosh(value: Value<Context, Double?>): Value<Context, Double?>(source)

The hyperbolic cosine of a value that is measured in radians.

If the value is null or NaN, it is returned unchanged.

Example

class Trigonometry(
val name: String,
val angle: Double,
val cosh: Double,
)

collection.aggregate()
.set {
Trigonometry::cosh set cosh(of(Trigonometry::angle))
}

External resources