Skip to content

Commit

Permalink
add note for BoolArrayDimIndexer
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur-man committed Sep 3, 2024
1 parent de8d51e commit 7acf5e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/indexing.R
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ OrthogonalIndexer <- R6::R6Class("OrthogonalIndexer",
dim_indexer <- SliceDimIndexer$new(dim_sel, dim_len, dim_chunk_len)
} else if(length(dim_sel) > 1) {
dim_indexer <- IntArrayDimIndexer$new(dim_sel, dim_len, dim_chunk_len)

# TODO: implement BoolArrayDimIndexer and fix if condition here
} else if(is_slice(dim_sel)) {
dim_indexer <- BoolArrayDimIndexer$new(dim_sel, dim_len, dim_chunk_len)
} else {
Expand Down

0 comments on commit 7acf5e8

Please sign in to comment.