Skip to content
Snippets Groups Projects
Commit ec12c634 authored by Ankur Dave's avatar Ankur Dave
Browse files

Unwrap Graph.mapEdges signature

parent 3b2e22e2
No related branches found
No related tags found
No related merge requests found
......@@ -169,9 +169,7 @@ abstract class Graph[VD: ClassTag, ED: ClassTag] {
* @tparam ED2 the new edge data type
*
*/
def mapEdges[ED2: ClassTag](
map: (Pid, Iterator[Edge[ED]]) => Iterator[ED2]):
Graph[VD, ED2]
def mapEdges[ED2: ClassTag](map: (Pid, Iterator[Edge[ED]]) => Iterator[ED2]): Graph[VD, ED2]
/**
* Construct a new graph where the value of each edge is
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment