func()

in gdbclient/graph/detachedgraph.go [71:80]


func (d *DetachedElement) Value(key string) interface{} {
	if d.properties == nil {
		return nil
	}

	if v, ok := d.properties[key]; ok {
		return v[0].PValue()
	}
	return nil
}