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
Currently in N to do something like this:
boardShadows[i][j][k] = True
You have to do:
boardShadows = [ ..boardShadows.subsection(0, i), [ ..(boardShadows[i] | []).subsection(0, j), [ ..(boardShadows[i][j] | []).subsection(0, k), true, ..(boardShadows[i][j] | []).subsection(k + 1, (boardShadows[i][j] | []).len()), ], ..(boardShadows[i] | []).subsection(j + 1, (boardShadows[i] | []).len()), ], ..boardShadows.subsection(i + 1, boardShadows.len()) ]
This is really cumbersome and large for such a simple task, there surely has to be a better way.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently in N to do something like this:
You have to do:
This is really cumbersome and large for such a simple task, there surely has to be a better way.
The text was updated successfully, but these errors were encountered: