We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Related to #1, it is currently not possible to use instances of generic functions:
func GenericToString[T any](v T) string { return fmt.Sprint(v) } var mod = convgen.Module( convgen.ImportFunc(GenericToString[int]), )
This compiles just fine, but will throw the error:
cannot use GenericToString[int] as function
Related to #1, it is currently not possible to use instances of generic functions:
This compiles just fine, but will throw the error: