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
string[][] data = [["100", "1Y"], ["200", "2Y"], ["300", "3Y"]]; data.fuse;
This does not compile, because it goes to char level instead and shape do not match. I also tried fuseAs!string but does not compile either.
The text was updated successfully, but these errors were encountered:
Looks like fuse calls fuseShape, which fails. This bug occurs with any array of strings.
fuse
fuseShape
It looks like the function looks through to the deep element type. So for instance,
writeln(fuseShape([100])); //prints [1] writeln(fuseShape("100")); //prints [3] writeln(fuseShape("1Y")); //prints [2]
Sorry, something went wrong.
No branches or pull requests
This does not compile, because it goes to char level instead and shape do not match.
I also tried fuseAs!string but does not compile either.
The text was updated successfully, but these errors were encountered: