Who benefits from the `indirect` keyword?

That's kinda what I was expecting. Thank you @Lantua :)

Do you mean something like

struct Recursive {
  var value: Int
  indirect var next: Recursive?
}

?

I think this would make sense as you said.

1 Like