Home / Function/ GetStateWithDefault() — fiber Function Reference

GetStateWithDefault() — fiber Function Reference

Architecture documentation for the GetStateWithDefault() function in state.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  27515588_b66d_e942_2c87_112102f0b1ff["GetStateWithDefault()"]
  5bc5a845_0556_f27f_dfa4_49534ad22ad5["state.go"]
  27515588_b66d_e942_2c87_112102f0b1ff -->|defined in| 5bc5a845_0556_f27f_dfa4_49534ad22ad5
  style 27515588_b66d_e942_2c87_112102f0b1ff fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

state.go lines 127–134

func GetStateWithDefault[T any](s *State, key string, defaultVal T) T {
	dep, ok := GetState[T](s, key)
	if !ok {
		return defaultVal
	}

	return dep
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does GetStateWithDefault() do?
GetStateWithDefault() is a function in the fiber codebase, defined in state.go.
Where is GetStateWithDefault() defined?
GetStateWithDefault() is defined in state.go at line 127.

Analyze Your Own Codebase

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

Try Supermodel Free