Skip to content
Snippets Groups Projects
Select Git revision
  • fbefdfc50ca5698cfcd47d56ac5b49630d037696
  • master default protected
  • 0.5.9
  • 0.5.8
  • 0.5.7
  • 0.5.6
  • 0.5.5
  • 0.5.4
  • 0.5.3
  • 0.5.2
  • 0.5.1
  • 0.5.0
  • 0.4.17
  • 0.4.16
  • 0.4.15
  • 0.4.14
  • 0.4.13
  • 0.4.12
  • 0.4.11
  • 0.4.10
  • 0.4.9
  • 0.4.8
22 results

PATENTS

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]
    }