INPUT
All functions > CORE > INPUT
Defines an input.
Syntax
INPUT(type: TYPE) → T sql
Type Parameters:
T: Any expression type
Arguments
| Parameter | Type | Required | Description |
|---|---|---|---|
type | TYPE | Yes | The data type of the input parameter |
Returns
An INPUT marker of the specified type
Notes
- Defines an input parameter for a feature
- Input parameters allow features to be parameterized
- The type parameter specifies what kind of value is expected
- Used in feature definitions that accept runtime parameters
- Enables reusable, parameterized feature logic
- Part of the FeatureMesh core system