index<R> method

JsonPathColumn<R> index<R>(
  1. int i
)

Chains an array index selection to the current JSON extraction path.

Implementation

JsonPathColumn<R> index<R>(int i) {
  return JsonPathColumn<R>(rootColumn, '$path[$i]');
}