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

generics with strip package path #58

Open
podhmo opened this issue Feb 26, 2023 · 0 comments
Open

generics with strip package path #58

podhmo opened this issue Feb 26, 2023 · 0 comments

Comments

@podhmo
Copy link
Owner

podhmo commented Feb 26, 2023

package main

import (
	"fmt"

	reflectopenapi "github.com/podhmo/reflect-openapi"
	reflectshape "github.com/podhmo/reflect-shape"
)

type Wrap[T any] struct {
	Value T
}

func Example() {
	c := &reflectshape.Config{}

	fmt.Println(c.Extract(reflectopenapi.Header{}).Name)
	fmt.Println(c.Extract(Wrap[reflectopenapi.Header]{Value: reflectopenapi.Header{}}).Name)
	// Output:
	// Header
	// Wrap[github.com/podhmo/reflect-openapi.Header]
}

we need Wrap[Header] in some case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant