Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LinkDef (0.16 sec)

  1. api/go1.19.txt

    pkg go/doc/comment, type Link struct, Text []Text #51082
    pkg go/doc/comment, type Link struct, URL string #51082
    pkg go/doc/comment, type LinkDef struct #51082
    pkg go/doc/comment, type LinkDef struct, Text string #51082
    pkg go/doc/comment, type LinkDef struct, URL string #51082
    pkg go/doc/comment, type LinkDef struct, Used bool #51082
    pkg go/doc/comment, type List struct #51082
    pkg go/doc/comment, type List struct, ForceBlankBefore bool #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    type Doc struct {
    	// Content is the sequence of content blocks in the comment.
    	Content []Block
    
    	// Links is the link definitions in the comment.
    	Links []*LinkDef
    }
    
    // A LinkDef is a single link definition.
    type LinkDef struct {
    	Text string // the link text
    	URL  string // the link URL
    	Used bool   // whether the comment uses the definition
    }
    
    // A Block is block-level content in a doc comment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top