index method

Builder index(
  1. Builder other
)

Returns the index operation on this with other.

this[other]

Implementation

Builder index(
  Builder other,
) {
  return builder.index(this, other);
}