Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions misc_docs/syntax/language_polyvar.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
id: "polyvar"
keywords: ["polymorphic", "variant", "polyvar"]
name: "#value"
summary: "This is a `polymorphic variant`."
category: "languageconstructs"
---

[Polymorphic variants](/docs/manual/latest/polymorphic-variant) (or _poly variants_) are the structurally typed equivalent of [variants](/docs/manual/latest/variant).

In comparison to nominally typed variants, their values don't require any explicit type definition, and are not coupled to any specific module. The compiler will infer the type on demand, and compare poly variants by their value, instead of their type name.

However, you can also describe a set of polymorphic variants with a type declaration, which can be useful to explicitly annotate function parameters and values. The most common format is the _closed poly variant_ type definition that looks like this: `type x = [ #value ]` (Note the extra `[]` around the poly variant constructors!).

### Example

<CodeTab labels={["ReScript", "JS Output"]}>

```res
type status = [#Waiting | #Running | #Error(string)]

let status1: status = #Waiting
let status2: status = #Error("Network error")
```

```js
var status1 = "Waiting";

var status2 = {
NAME: "Error",
VAL: "Network error",
};
```

</CodeTab>

### References

* [Polymorphic Variant](/docs/manual/latest/polymorphic-variant)