Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BADPARAM (0.05 sec)

  1. src/go/doc/reader.go

    			}
    			b.WriteByte(']')
    			return b.String()
    		}
    	}
    	return "BADRECV"
    }
    
    func recvParam(p ast.Expr) string {
    	if id, ok := p.(*ast.Ident); ok {
    		return id.Name
    	}
    	return "BADPARAM"
    }
    
    // set creates the corresponding Func for f and adds it to mset.
    // If there are multiple f's with the same name, set keeps the first
    // one with documentation; conflicts are ignored. The boolean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top