func()

in gdbclient/graph/detachedgraph.go [40:49]


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

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