Avatar
norio_nomura 7/6/2021 6:46 AM
めちゃ遅いレスですが、Yamsだとomochiさんのあげたコード: func encode(to encoder: Encoder) throws { try a.encode(to: encoder) try b.encode(to: encoder) } はマージされ、 func encode(to encoder: Encoder) throws { var c = encoder.singleValueContainer() try c.encode(a) try c.encode(b) }Precondition failed:でクラッシュします。