github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/path/filepath/path_plan9.go (about)

     1  // Copyright 2010 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package filepath
     6  
     7  // IsAbsはパスが絶対パスであるかどうかを報告します。
     8  func IsAbs(path string) bool
     9  
    10  // HasPrefixは歴史的な互換性のために存在しており、使用するべきではありません。
    11  //
    12  // Deprecated: HasPrefixはパスの境界を尊重せず、
    13  // 必要な場合に大文字と小文字を無視しません。
    14  func HasPrefix(p, prefix string) bool