Skip to content

Fix #3861: Spec changes to extractors implemented in #3747 #4024

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/docs/reference/changed/vararg-patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,30 @@ supported:
/*!*/ case List(1, 2, xs @ _*) // syntax error
/*!*/ case List(1, 2, _*) => ... // syntax error

Another change relates to extractors producing values with `T*` types, which can then be
matched by vararg patterns. Previously, such extractors used an `unapplySeq` whereas now they use an `unapply` (in the long term, we plan to get rid of `unapplySeq` altogether, replacing all its usages with `unapply`).

Example: Previously, this was correct:

class Person(val name: String, val children: Person *)
object Person {
def unapplySeq(p: Person) = Some((p.name, p.children))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe add a paragraph explaining the rules that make an unapply qualify for vararg extraction. I am not even sure what are the rules myself. The return type must be of the form Option[Seq[T]] or Option[(..., Seq[T])]?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't context switch into that, sorry. Constant context switching is what kills my productivity. So either somebody else digs out the details and adds them or we leave it as is. Again, my plea stands that somebody will have to take over the pattern matching problematic.

}

def childCount(p: Person) = p match {
case Person(_, ns @ _*) => ns.length
}

Now, the equivalent program is written as follows:

class Person(val name: String, val children: Person *)
object Person {
def unapply(p: Person) = Some((p.name, p.children))
}

def childCount(p: Person) = p match {
case Person(_, ns : _*) => ns.length
}