Home / Function/ BenchmarkState_GetBool() — fiber Function Reference

BenchmarkState_GetBool() — fiber Function Reference

Architecture documentation for the BenchmarkState_GetBool() function in state_test.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  d6c882c5_c317_29c9_02bd_393e115118c0["BenchmarkState_GetBool()"]
  040d1690_51eb_9416_23b2_7b1543e92d65["state_test.go"]
  d6c882c5_c317_29c9_02bd_393e115118c0 -->|defined in| 040d1690_51eb_9416_23b2_7b1543e92d65
  style d6c882c5_c317_29c9_02bd_393e115118c0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

state_test.go lines 853–870

func BenchmarkState_GetBool(b *testing.B) {
	b.ReportAllocs()

	st := newState()
	n := 1000
	// prepopulate the state
	for i := range n {
		key := "key" + strconv.Itoa(i)
		st.Set(key, i%2 == 0)
	}

	i := 0
	for b.Loop() {
		i++
		key := "key" + strconv.Itoa(i%n)
		st.GetBool(key)
	}
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does BenchmarkState_GetBool() do?
BenchmarkState_GetBool() is a function in the fiber codebase, defined in state_test.go.
Where is BenchmarkState_GetBool() defined?
BenchmarkState_GetBool() is defined in state_test.go at line 853.

Analyze Your Own Codebase

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

Try Supermodel Free