Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 629 Bytes

decorator_inline.mdx

File metadata and controls

39 lines (29 loc) · 629 Bytes
id keywords name summary category
inline-decorator
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.

Example

<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"
];

References