Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 844 Bytes

Summary.Doc.md

File metadata and controls

42 lines (31 loc) · 844 Bytes
public record Doc(DocMember[] Members)

A document parsed from the source code or an assembly.

Fields

public static readonly Doc Empty

An empty document.

Properties

public DocMember[] Members { get; }

The sequence of members this doc contains.

Methods

public static Doc Merge(Doc a, Doc b)

Merges two documents together returning the new merged document.

Parameters

  • a: The first document to merge.
  • b: The second document to merge.
public DocTypeDeclaration? Declaration(DocType? type)

A type declaration that matches the specified type.