Skip to main content

[]

Symbol of BoolArray.

Overloads

NameDescription
(BoolArray lhs [] const List<integer> inds) -> boolGets or sets the element at row inds[0] and column inds[1] of the BoolArray.
(BoolArray lhs [] integer i) -> boolGets or sets the element at index i of the BoolArray.
(const BoolArray lhs [] const Slices slices) -> BoolArrayGets or sets the elements of the BoolArray using slices.
(const BoolArray lhs [] const List<List<integer>> slices) -> BoolArrayGets or sets the elements of the BoolArray using slices.
(const BoolArray lhs [] const List<integer> inds) -> boolGets or sets the element at row inds[0] and column inds[1] of the BoolArray.
(const BoolArray lhs [] integer i) -> boolGets or sets the element at index i of the BoolArray.

(BoolArray lhs [] const List<integer> inds) -> bool

Gets or sets the element at row inds[0] and column inds[1] of the BoolArray.

Parameters

  • lhs: Left-hand side value.
  • inds: A vector of two indices.

(BoolArray lhs [] integer i) -> bool

Gets or sets the element at index i of the BoolArray.

Parameters

  • lhs: Left-hand side value.
  • i: The index of the element to get or set.

(const BoolArray lhs [] const Slices slices) -> BoolArray

Gets or sets the elements of the BoolArray using slices.

Parameters

  • lhs: Left-hand side value.
  • slices: A vector of slices describing the multi-dimensional indices to access.

(const BoolArray lhs [] const List<List<integer>> slices) -> BoolArray

Gets or sets the elements of the BoolArray using slices.

Parameters

  • lhs: Left-hand side value.
  • slices: A vector of slices describing the multi-dimensional indices to access.

(const BoolArray lhs [] const List<integer> inds) -> bool

Gets or sets the element at row inds[0] and column inds[1] of the BoolArray.

Parameters

  • lhs: Left-hand side value.
  • inds: A vector of two indices.

(const BoolArray lhs [] integer i) -> bool

Gets or sets the element at index i of the BoolArray.

Parameters

  • lhs: Left-hand side value.
  • i: The index of the element to get or set.