This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type xy_part = [`X of int | `Y of bool] | |
type pre = [xy_part | `Pcon of pre * pre];; | |
let rec pcon_to_lstm (arg: pre) : xy_part list = | |
match arg with | |
| `Pcon (a, b) -> (pcon_to_lstm a) @ (pcon_to_lstm b) | |
| (#xy_part as x) -> [x] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment