Skip to content
Snippets Groups Projects
Select Git revision
  • b881ddc4a0e264237996064b36433b6ba85646f0
  • master default protected
  • 1.31
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
23 results

embed.mjs

Blame
  • caps.go 745 B
    package terminfo
    
    // BoolCapName returns the bool capability name.
    func BoolCapName(i int) string {
    	return boolCapNames[2*i]
    }
    
    // BoolCapNameShort returns the short bool capability name.
    func BoolCapNameShort(i int) string {
    	return boolCapNames[2*i+1]
    }
    
    // NumCapName returns the num capability name.
    func NumCapName(i int) string {
    	return numCapNames[2*i]
    }
    
    // NumCapNameShort returns the short num capability name.
    func NumCapNameShort(i int) string {
    	return numCapNames[2*i+1]
    }
    
    // StringCapName returns the string capability name.
    func StringCapName(i int) string {
    	return stringCapNames[2*i]
    }
    
    // StringCapNameShort returns the short string capability name.
    func StringCapNameShort(i int) string {
    	return stringCapNames[2*i+1]
    }