module Regexp::Expression::Shared

def optional?

def optional?
  quantified? && quantifier.min == 0
end