goombaio / dag

A DAG, Directed acyclic graph implementation in golang.
Apache License 2.0
122 stars 28 forks source link

Implement Vertex.Value #22

Closed jmdots closed 6 years ago

jmdots commented 6 years ago

Description

value arg of func NewVertex(id string, value interface{}) *Vertex {} wasn't used.

Approach

Added Value to the Vertex struct. Added some test coverage for it.