Int32 Function Return
Tip
Use Float32 Return for 32-bit floating point numbers. Use Number Return for arbitrary precision numbers.
Int32 function return expects a 32-bit integer number value from function logic. Set values in function logic with the Go built-in int32
type, Go built-in *int32
type, or the framework int32 type.
Function Definition
Use the function.Int32Return
type in the function definition.
In this example, a function definition includes a int32 return:
Custom Types
You may want to build your own data value and type implementations to allow your provider to combine validation and other behaviors into a reusable bundle. This helps avoid duplication and ensures consistency. These implementations use the CustomType
field in the return type.
Refer to Custom Types for further details on creating provider-defined types and values.
Documentation
Return documentation is expected in the top-level function documentation. Refer to function documentation for information about the Summary
, Description
, and MarkdownDescription
fields available.
Setting Return Data
The function implementation documentation covers the general methods for setting function return data in function logic.
When setting the value for this return:
- If
CustomType
is set, use its associated value type. - Otherwise, use the Go built-in
int32
type, Go built-in*int32
type, or framework int32 type.
In this example, a function defines a int32 return and sets its value: