type reflect.Kind

24 uses

	reflect (current package)
		type.go#L101: 	Kind() Kind
		type.go#L239: type Kind uint
		type.go#L242: 	Invalid Kind = iota
		type.go#L634: func (k Kind) String() string {
		type.go#L823: func (t *rtype) Kind() Kind { return Kind(t.kind & kindMask) }
		type.go#L1820: 	kind  Kind
		type.go#L3142: 	switch Kind(t.kind & kindMask) {
		value.go#L82: func (f flag) kind() Kind {
		value.go#L83: 	return Kind(f & flagKindMask)
		value.go#L163: 	Kind   Kind
		value.go#L220: func (f flag) mustBe(expected Kind) {
		value.go#L222: 	if Kind(f&flagKindMask) != expected {
		value.go#L1560: func (v Value) Kind() Kind {

	encoding/asn1
		asn1.go#L993: func canHaveDefaultValue(k reflect.Kind) bool {

	github.com/go-pg/pg/v10/orm
		model_table.go#L27: 	Kind() reflect.Kind
		model_table_slice.go#L66: func (m *sliceTableModel) Kind() reflect.Kind {
		model_table_struct.go#L103: func (m *structTableModel) Kind() reflect.Kind {

	github.com/golang/protobuf/proto
		extensions.go#L326: func isScalarKind(k reflect.Kind) bool {

	github.com/google/go-cmp/cmp
		report_compare.go#L111: 	var parentKind reflect.Kind
		report_compare.go#L204: func (opts formatOptions) formatDiffList(recs []reportRecord, k reflect.Kind, ptrs *pointerReferences) textNode {
		report_reflect.go#L114: func (opts formatOptions) FormatValue(v reflect.Value, parentKind reflect.Kind, ptrs *pointerReferences) (out textNode) {

	github.com/vmihailenco/msgpack/v5
		encode_value.go#L193: func nilable(kind reflect.Kind) bool {

	text/template
		funcs.go#L175: func intLike(typ reflect.Kind) bool {