type_name

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Mar 15, 2026 License: MIT Imports: 1 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func TypeName

func TypeName[T any]() string

TypeName returns the fully qualified name of type T as a string.

It uses reflection to obtain the type name at runtime and is primarily intended for logging, error messages, and generic type identification during initialization.

The function is safe for any type, including pointers and interfaces. For pointer types, it returns the name of the underlying type without the pointer prefix.

Example:

name := tools.TypeName[time.Time]() // returns "time.Time"
ptrName := tools.TypeName[*int]()   // returns "int"

Types

This section is empty.

Jump to

Keyboard shortcuts

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