-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Milestone
Description
Currently in N to do something like this:
boardShadows[i][j][k] = TrueYou 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.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed