If I have a function that returns a MetaGraph is it possible to annotate the type?
e.g.
const CustomGraph = MetaGraph(Int64, SimpleDiGraph(Int64), ...)
function create_graph()::CustomGraph
out = CustomGraph(SimpleDiGraph())
return out
end
This schema doesn't work, and it says "no method matching ... exists"