Skip to content

Commit 476d9dd

Browse files
committed
Revert "boolean mask"
This reverts commit 3ddea35.
1 parent 3ddea35 commit 476d9dd

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/NumSharp.Core/Selection/NDArray.Indexing.Masking.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ public NDArray this[NDArray<bool> mask]
2323
get => FetchIndices(this, np.nonzero(mask), null, true);
2424
set
2525
{
26-
for(int i = 0; i< mask.size; i++)
27-
{
28-
if (mask.GetBoolean(i))
29-
this[i] = value;
30-
}
26+
throw new NotImplementedException("Setter is not implemented yet");
3127
}
3228
}
3329
}

0 commit comments

Comments
 (0)