reflect

package
v1.18.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 15, 2020 License: Apache-2.0, BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Overview

Package reflect is a fork of go's standard library reflection package, which allows for deep equal with equality functions defined.

This package is copied from Go library reflect/type.go. The struct tag library provides no way to extract the list of struct tags, only a specific tag

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Equalities

type Equalities map[reflect.Type]reflect.Value

Equalities is a map from type to a function comparing two values of that type.

func EqualitiesOrDie

func EqualitiesOrDie(funcs ...interface{}) Equalities

For convenience, panics on errrors

func (Equalities) AddFunc

func (e Equalities) AddFunc(eqFunc interface{}) error

AddFunc uses func as an equality function: it must take two parameters of the same type, and return a boolean.

func (Equalities) AddFuncs

func (e Equalities) AddFuncs(funcs ...interface{}) error

AddFuncs is a shortcut for multiple calls to AddFunc.

func (Equalities) DeepDerivative

func (e Equalities) DeepDerivative(a1, a2 interface{}) bool

DeepDerivative is similar to DeepEqual except that unset fields in a1 are ignored (not compared). This allows us to focus on the fields that matter to the semantic comparison.

The unset fields include a nil pointer and an empty string.

func (Equalities) DeepEqual

func (e Equalities) DeepEqual(a1, a2 interface{}) bool

DeepEqual is like reflect.DeepEqual, but focused on semantic equality instead of memory equality.

It will use e's equality functions if it finds types that match.

An empty slice *is* equal to a nil slice for our purposes; same for maps.

Unexported field members cannot be compared and will cause an informative panic; you must add an Equality function for these types.

type StructTag

type StructTag struct {
	Name  string
	Value string
}

func (StructTag) String

func (t StructTag) String() string

type StructTags

type StructTags []StructTag

func ParseStructTags

func ParseStructTags(tag string) (StructTags, error)

ParseStructTags returns the full set of fields in a struct tag in the order they appear in the struct tag.

func (StructTags) Has

func (tags StructTags) Has(name string) bool

func (StructTags) String

func (tags StructTags) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL