# Functions
FieldMap retrieves and returns struct field as map[name/tag]*Field from `pointer`.
ParseTag parses tag string into map.
StructType retrieves and returns the struct Type of specified struct/*struct.
TagFields retrieves and returns struct tags as []*Field from `pointer`.
TagMapField retrieves struct tags as map[tag]*Field from `pointer`, and returns it.
TagMapName retrieves and returns struct tags as map[tag]attribute from `pointer`.
# Constants
Recursively retrieving fields as map if the field is an embedded struct.
Recursively retrieving fields as map if the field is an embedded struct and the field has no tag.
No recursively retrieving fields as map if the field is an embedded struct.
# Structs
Field contains information of a struct field .
No description provided by the author
Type wraps reflect.Type for additional features.