class Asciidoctor::AbstractBlock

def [](i)

=> "bar"
section[1]
section << 'bar'
section << 'foo'

section = Section.new

i - The Integer array index number.

Public: Get the element at i in the array of blocks.
def [](i)
  @blocks[i]
end