Home / Function/ MustGetState() — fiber Function Reference

MustGetState() — fiber Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

state.go lines 115–122

func MustGetState[T any](s *State, key string) T {
	dep, ok := GetState[T](s, key)
	if !ok {
		panic("state: dependency not found!")
	}

	return dep
}

Domain

Subdomains

Defined In

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free