Home / Function/ isExported() — fiber Function Reference

isExported() — fiber Function Reference

Architecture documentation for the isExported() function in mapping.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  7bae8bd4_bf10_0474_d608_139f15c2bdb1["isExported()"]
  5a1aea01_8a49_a350_626b_5da5e78187fd["mapping.go"]
  7bae8bd4_bf10_0474_d608_139f15c2bdb1 -->|defined in| 5a1aea01_8a49_a350_626b_5da5e78187fd
  ff5020ca_11ae_230b_e44f_8630ed808405["buildFieldInfo()"]
  ff5020ca_11ae_230b_e44f_8630ed808405 -->|calls| 7bae8bd4_bf10_0474_d608_139f15c2bdb1
  style 7bae8bd4_bf10_0474_d608_139f15c2bdb1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

binder/mapping.go lines 222–227

func isExported(f *reflect.StructField) bool {
	if f == nil {
		return false
	}
	return f.PkgPath == ""
}

Domain

Subdomains

Defined In

Called By

Frequently Asked Questions

What does isExported() do?
isExported() is a function in the fiber codebase, defined in binder/mapping.go.
Where is isExported() defined?
isExported() is defined in binder/mapping.go at line 222.
What calls isExported()?
isExported() is called by 1 function(s): buildFieldInfo.

Analyze Your Own Codebase

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

Try Supermodel Free