Source File
path_unix.go
Belonging Package
path/filepath
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build unix || (js && wasm) || wasip1
package filepath
import (
)
// HasPrefix exists for historical compatibility and should not be used.
//
// Deprecated: HasPrefix does not respect path boundaries and
// does not ignore case when required.
func (, string) bool {
return strings.HasPrefix(, )
}
func splitList( string) []string {
if == "" {
return []string{}
}
return strings.Split(, string(ListSeparator))
}
func abs( string) (string, error) {
return unixAbs()
}
func join( []string) string {
// If there's a bug here, fix the logic in ./path_plan9.go too.
for , := range {
if != "" {
return Clean(strings.Join([:], string(Separator)))
}
}
return ""
}
func sameWord(, string) bool {
return ==
}
The pages are generated with Golds v0.7.0-preview. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |