5
type t = {
      dir : [ `Buy | `Sell ];
      quantity : int;
      price : float;
      mutable cancelled : bool;
    }

BuySellの前に`がありますが、これはどういう意味ですか?

また、タイプは何[ | ]ですか?

4

1 に答える 1