Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for splitPathList (0.11 sec)

  1. src/go/build/build.go

    	if f := ctxt.JoinPath; f != nil {
    		return f(elem...)
    	}
    	return filepath.Join(elem...)
    }
    
    // splitPathList calls ctxt.SplitPathList (if not nil) or else filepath.SplitList.
    func (ctxt *Context) splitPathList(s string) []string {
    	if f := ctxt.SplitPathList; f != nil {
    		return f(s)
    	}
    	return filepath.SplitList(s)
    }
    
    // isAbsPath calls ctxt.IsAbsPath (if not nil) or else filepath.IsAbs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top