Uses of Class
cloud.opencode.base.collections.graph.MutableGraph
Packages that use MutableGraph
Package
Description
Graph Collections Package - Graph Data Structures
图集合包 - 图数据结构
-
Uses of MutableGraph in cloud.opencode.base.collections.graph
Methods in cloud.opencode.base.collections.graph that return MutableGraphModifier and TypeMethodDescriptionstatic <N> MutableGraph<N> MutableGraph.create(boolean directed, boolean allowsSelfLoops) Create a graph with custom configuration.static <N> MutableGraph<N> MutableGraph.directed()Create a directed mutable graph.static <N> MutableGraph<N> MutableGraph.directedAllowingSelfLoops()Create a directed mutable graph allowing self-loops.static <N> MutableGraph<N> MutableGraph.undirected()Create an undirected mutable graph.static <N> MutableGraph<N> MutableGraph.undirectedAllowingSelfLoops()Create an undirected mutable graph allowing self-loops.