github.com/unidoc/unidoc@v2.2.0+incompatible/pdf/internal/cmap/const.go (about)

     1  /*
     2   * This file is subject to the terms and conditions defined in
     3   * file 'LICENSE.md', which is part of this source code package.
     4   */
     5  
     6  package cmap
     7  
     8  import "regexp"
     9  
    10  const (
    11  	cisSystemInfo       = "/CIDSystemInfo"
    12  	begincodespacerange = "begincodespacerange"
    13  	endcodespacerange   = "endcodespacerange"
    14  	beginbfchar         = "beginbfchar"
    15  	endbfchar           = "endbfchar"
    16  	beginbfrange        = "beginbfrange"
    17  	endbfrange          = "endbfrange"
    18  
    19  	cmapname = "CMapName"
    20  	cmaptype = "CMapType"
    21  )
    22  
    23  var reNumeric = regexp.MustCompile(`^[\+-.]*([0-9.]+)`)