Advertisement
Guest User

Untitled

a guest
Dec 10th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.17 KB | None | 0 0
  1. def unapply(v: PartitionVertex): Option[(Vertex, Identifier, Partition)] = {
  2.     val tuple: (Vertex, Identifier, Partition) = (v.wrapped, v.getId, v.parent)
  3.     Some(tuple)
  4.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement