BenchmarkState_Keys() — fiber Function Reference
Architecture documentation for the BenchmarkState_Keys() function in state_test.go from the fiber codebase.
Entity Profile
Dependency Diagram
graph TD 6de83075_b4b6_bb15_4afd_3f627aedc824["BenchmarkState_Keys()"] 040d1690_51eb_9416_23b2_7b1543e92d65["state_test.go"] 6de83075_b4b6_bb15_4afd_3f627aedc824 -->|defined in| 040d1690_51eb_9416_23b2_7b1543e92d65 style 6de83075_b4b6_bb15_4afd_3f627aedc824 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
state_test.go lines 1007–1019
func BenchmarkState_Keys(b *testing.B) {
b.ReportAllocs()
st := newState()
n := 1000
for i := range n {
st.Set("key"+strconv.Itoa(i), i)
}
for b.Loop() {
_ = st.Keys()
}
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does BenchmarkState_Keys() do?
BenchmarkState_Keys() is a function in the fiber codebase, defined in state_test.go.
Where is BenchmarkState_Keys() defined?
BenchmarkState_Keys() is defined in state_test.go at line 1007.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free