Capy-Bearer Documentation

exp

host call

Capy

function exp(value : f32) f32
function exp(value : f64) f64

Description

exp() returns the host math result for value.

This function uses a host call.

Parameters

value : the input value

Return Values

An f32 or f64 value.

Example

Capy

var value := exp(2.0)
print(value, "\n")