ptr is a helper function to create pointers for schema constraints
(v T)
| 2167 | |
| 2168 | // ptr is a helper function to create pointers for schema constraints |
| 2169 | func ptr[T any](v T) *T { |
| 2170 | return &v |
| 2171 | } |
| 2172 | |
| 2173 | func TestComplete(t *testing.T) { |
| 2174 | completionValues := []string{"python", "pytorch", "pyside"} |
no outgoing calls
no test coverage detected