We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given a template function
func sum[T](list: T[]) -> T
we can already call
sum(range(10))
and it will instantiate the correct sum[i32] function.
sum[i32]
But we still need proper matching for pipes:
range(10) |> sum
The text was updated successfully, but these errors were encountered:
momentarylapse
No branches or pull requests
Given a template function
we can already call
and it will instantiate the correct
sum[i32]
function.But we still need proper matching for pipes:
The text was updated successfully, but these errors were encountered: