Home / Function/ Get() — gin Function Reference

Get() — gin Function Reference

Architecture documentation for the Get() function in tree.go from the gin codebase.

Entity Profile

Dependency Diagram

graph TD
  05a551ce_4bcf_575c_02be_0ac3341bd2b3["Get()"]
  365d331d_07dd_ffb1_13db_2c301c9c9586["ByName()"]
  365d331d_07dd_ffb1_13db_2c301c9c9586 -->|calls| 05a551ce_4bcf_575c_02be_0ac3341bd2b3
  style 05a551ce_4bcf_575c_02be_0ac3341bd2b3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

tree.go lines 29–36

func (ps Params) Get(name string) (string, bool) {
	for _, entry := range ps {
		if entry.Key == name {
			return entry.Value, true
		}
	}
	return "", false
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does Get() do?
Get() is a function in the gin codebase.
What calls Get()?
Get() is called by 1 function(s): ByName.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free