Skip to content

Not possible to do BFS on a graph of City #182

@riberr

Description

@riberr

Hi,

This example is not possible:

type City struct {
    Name string
}

cityHash := func(c City) string {
    return c.Name
}

g := graph.New(cityHash)

//...

f := func(c City) bool {
    return c.Name == "London"
}

graph.DFS(g, "Paris", f)

Warning: "Cannot use 'f' (type func(c City) bool) as the type func(string) bool"

Am I missing something? Because the docs says this should be possible.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions