Home / Function/ matchEtagStrong() — fiber Function Reference

matchEtagStrong() — fiber Function Reference

Architecture documentation for the matchEtagStrong() function in helpers.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  c6e944f5_10cc_2bef_5270_1346ec50dea0["matchEtagStrong()"]
  bec0e401_e4cd_f765_6df3_a79059073e50["helpers.go"]
  c6e944f5_10cc_2bef_5270_1346ec50dea0 -->|defined in| bec0e401_e4cd_f765_6df3_a79059073e50
  942d4a38_51d0_4bac_db70_263103130342["normalizeEtag()"]
  c6e944f5_10cc_2bef_5270_1346ec50dea0 -->|calls| 942d4a38_51d0_4bac_db70_263103130342
  style c6e944f5_10cc_2bef_5270_1346ec50dea0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

helpers.go lines 692–700

func matchEtagStrong(s, etag string) bool {
	n1, w1, ok1 := normalizeEtag(s)
	n2, w2, ok2 := normalizeEtag(etag)
	if !ok1 || !ok2 || w1 || w2 {
		return false
	}

	return n1 == n2
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does matchEtagStrong() do?
matchEtagStrong() is a function in the fiber codebase, defined in helpers.go.
Where is matchEtagStrong() defined?
matchEtagStrong() is defined in helpers.go at line 692.
What does matchEtagStrong() call?
matchEtagStrong() calls 1 function(s): normalizeEtag.

Analyze Your Own Codebase

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

Try Supermodel Free