Source File
user.go
Belonging Package
os/user
package user
import (
)
var (
userImplemented = true // set to false by lookup_stubs.go's init
groupImplemented = true // set to false by lookup_stubs.go's init
)
type UnknownUserIdError int
func ( UnknownUserIdError) () string {
return "user: unknown userid " + strconv.Itoa(int())
}
type UnknownUserError string
func ( UnknownUserError) () string {
return "user: unknown user " + string()
}
type UnknownGroupIdError string
func ( UnknownGroupIdError) () string {
return "group: unknown groupid " + string()
}
type UnknownGroupError string
func ( UnknownGroupError) () string {
return "group: unknown group " + string()
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |