...

Source file src/github.com/leodido/go-urn/parsing_mode.go

Documentation: github.com/leodido/go-urn

     1  package urn
     2  
     3  type ParsingMode int
     4  
     5  const (
     6  	Default ParsingMode = iota
     7  	RFC2141Only
     8  	RFC7643Only
     9  	RFC8141Only
    10  )
    11  
    12  const DefaultParsingMode = RFC2141Only
    13  

View as plain text