ee.call

Call a function with the given positional arguments.

Returns an object representing the called function. If the signature specifies a recognized return type, the returned value will be cast to that type.

UsageReturns
ee.call(func, var_args)ComputedObject
ArgumentTypeDetails
funcFunction|StringThe function to call. Either an ee.Function object or the name of an API function.
var_argsVarArgsPositional arguments to pass to the function.