We haven't fully updated references to union cases, and enums still are not
their own thing yet, but "oneof" is gone. Long live "union"!
Swift SVN r6783
This isn't quite the design I mentioned on Tuesday; I keep waffling,
but right now I think ?x is a better match-pattern binder than
var x. Compare:
case .cons(?head, ?tail):
case .cons(var head, var tail):
Swift SVN r2830
- I've converted every document except the LangRef, which is more trouble to
convert because of the use of styling to embed notes.
- 'make html' with sphinx-build in your path to build the docs.
Now back to my regularly scheduled breaking things. :)
Swift SVN r2410