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
Example array: [5]int{14234, 42, -1, 1000, 5})
[5]int{14234, 42, -1, 1000, 5})
Current output:
([5]int) (len=5 cap=5) { (int) 14234, (int) 42, (int) -1, (int) 1000, (int) 5 }
Suggested output with index aligments:
<[1000]int> len=1000 cap=2000 { (0) <int> 14234 (1) <int> 42 (2) <int> -1 ... (998) <int> 1000 (999) <int> 5 }
or
Or smth like this. Anything that helps to see element index.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example array:
[5]int{14234, 42, -1, 1000, 5})
Current output:
Suggested output with index aligments:
or
Or smth like this. Anything that helps to see element index.
The text was updated successfully, but these errors were encountered: