id | keywords | name | summary | category | ||
---|---|---|---|---|---|---|
inline-decorator |
|
@inline |
This is the `@inline` decorator. |
decorators |
The @inline
decorator tells the compiler to inline its value
in every place the binding is being used, rather than use a variable.
<CodeTab labels={["ReScript", "JS Output"]}>
module Colors = {
@inline
let green = "green"
@inline
let red = "red"
}
let allowedColors = [Colors.green, Colors.red]
var allowedColors = [
"green",
"red"
];