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) || wasip1package filepathimport ()// 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 ( string) []string {if == "" {return []string{}}return strings.Split(, string(ListSeparator))}func ( string) (string, error) {return unixAbs()}func ( []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 (, string) bool {return ==}
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)