Header menu logo B2R2

Serializer Type

The serializer of a graph.

Static members

Static member Description

Serializer.FromJson(json, gConstructor, vConstructor, eConstructor)

Full Usage: Serializer.FromJson(json, gConstructor, vConstructor, eConstructor)

Parameters:
    json : string
    gConstructor : unit -> IDiGraph<'V, 'E>
    vConstructor : string -> 'V
    eConstructor : string -> 'E

Returns: IDiGraph<'V, 'E>

Import the graph from the given JSON string using the graph, vertex, and edge constructors.

json : string
gConstructor : unit -> IDiGraph<'V, 'E>
vConstructor : string -> 'V
eConstructor : string -> 'E
Returns: IDiGraph<'V, 'E>

Serializer.ToDOT(g, name, vertexFn, edgeFn)

Full Usage: Serializer.ToDOT(g, name, vertexFn, edgeFn)

Parameters:
Returns: string

Export the given graph to a string in the DOT format using the given vertex and edge label functions.

g : IDiGraphAccessible<'a, 'b>
name : 'c
vertexFn : IVertex<'a> -> string
edgeFn : Edge<'a, 'b> -> string
Returns: string

Serializer.ToDOT(g, name)

Full Usage: Serializer.ToDOT(g, name)

Parameters:
Returns: string

Export the given graph to a string in the DOT format.

g : IDiGraphAccessible<'a, 'b>
name : 'c
Returns: string

Serializer.ToJson(g, vertexFn, edgeFn)

Full Usage: Serializer.ToJson(g, vertexFn, edgeFn)

Parameters:
Returns: string

Export the given graph to a string in the JSON format with the given vertex and edge label functions.

g : IDiGraphAccessible<'a, 'b>
vertexFn : IVertex<'a> -> string
edgeFn : Edge<'a, 'b> -> string
Returns: string

Serializer.ToJson(g)

Full Usage: Serializer.ToJson(g)

Parameters:
Returns: string

Export the given graph to a string in the JSON format.

g : IDiGraphAccessible<'a, 'b>
Returns: string

Type something to start searching.