Source File
types_unix.go
Belonging Package
os
package os
import (
)
type fileStat struct {
name string
size int64
mode FileMode
modTime time.Time
sys syscall.Stat_t
}
func ( *fileStat) () int64 { return .size }
func ( *fileStat) () FileMode { return .mode }
func ( *fileStat) () time.Time { return .modTime }
func ( *fileStat) () interface{} { return &.sys }
func (, *fileStat) bool {
return .sys.Dev == .sys.Dev && .sys.Ino == .sys.Ino
![]() |
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. |