module BELParser::Parsers::Common::List

Constants

MAX_LENGTH

Public Class Methods

parse(content) { |obj| ... } click to toggle source
# File lib/bel_parser/parsers/common/list.rb, line 1813
def parse(content)
  return nil unless content

  Parser.new(content).each do |obj|
    yield obj
  end
end