36b3af2e3d
PR Check / Code Quality: Format (push) Failing after 1s
PR Check / Code Quality: Lint (darwin) (push) Failing after 0s
PR Check / Code Quality: Lint (freebsd) (push) Failing after 1s
PR Check / Code Quality: Lint (windows) (push) Failing after 1s
PR Check / Code Quality: Lint (linux) (push) Failing after 1s
PR Check / Security: Vulnerability Scan (push) Failing after 0s
Update Documentation / update-docs (push) Failing after 2s
PR Check / Code Quality: Vendor (push) Failing after 1s
PR Check / Code Quality: Coverage (push) Failing after 0s
PR Check / Tests: Unit (macos-latest) (push) Has been cancelled
PR Check / Tests: Unit (ubuntu-24.04) (push) Has been cancelled
PR Check / Tests: Unit (ubuntu-24.04-arm) (push) Has been cancelled
PR Check / Tests: Unit (windows-latest) (push) Has been cancelled
32 lines
745 B
Go
32 lines
745 B
Go
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]
|
|
}
|