Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce init time allocation when declaring types used for reflect #821

Merged
merged 1 commit into from Oct 7, 2022

Commits on Oct 3, 2022

  1. Reduce init time allocation when declaring types used for reflect

    In declaration of types used for reflect, use
    reflect.TypeOf((*T)).Elem() instead of reflect.TypeOf(T{}) to avoid
    init-time allocations.
    
    See related stdlib issue: golang/go#55973
    dolmen committed Oct 3, 2022
    Copy the full SHA
    cc92191 View commit details
    Browse the repository at this point in the history