Show / Hide Table of Contents

Class TableExtensions

Static wrapper for methods on Table nodes. You should never have to refer to this class directly.

Inheritance
Object
TableExtensions
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Mangrove.MetricSetTransformers.Extensions
Assembly: MetricSetTransformers.dll
Syntax
public static class TableExtensions

Methods

View Source

PathTo(Table, Table)

Find shortest paths from start to finish. If there is no such path, will return empty. If the path is found, then it would include start as the first element and finish as the last.

Declaration
public static IEnumerable<Table> PathTo(this Table start, Table finish)
Parameters
Type Name Description
Table start
Table finish
Returns
Type Description
IEnumerable<Table>
  • View Source
Back to top Generated by DocFX