func runtime.hasPrefix
9 uses
runtime (current package)
panic.go#L32: if sys.GoarchWasm == 0 && hasPrefix(funcname(findfunc(pc)), "runtime.") {
preempt.go#L426: if hasPrefix(name, "runtime.") ||
preempt.go#L427: hasPrefix(name, "runtime/internal/") ||
preempt.go#L428: hasPrefix(name, "reflect.") {
proc.go#L572: if hasPrefix(s, prefix) {
proc.go#L4392: if hasPrefix(funcname(f), "runtime/internal/atomic") {
string.go#L338: func hasPrefix(s, prefix string) bool {
traceback.go#L850: return bytealg.IndexByteString(name, '.') >= 0 && (!hasPrefix(name, "runtime.") || isExportedRuntime(name))
traceback.go#L1046: return hasPrefix(funcname(f), "runtime.")
 |
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. |