Sha256: 72fac715be74e06f30d6ae19675a53628e8a041aad54610d4778cb0313a9b080
Contents?: true
Size: 785 Bytes
Versions: 7
Compression:
Stored size: 785 Bytes
Contents
module Regexp::Syntax module Token module Quantifier Greedy = %i[ zero_or_one zero_or_more one_or_more ] Reluctant = %i[ zero_or_one_reluctant zero_or_more_reluctant one_or_more_reluctant ] Possessive = %i[ zero_or_one_possessive zero_or_more_possessive one_or_more_possessive ] Interval = %i[interval] IntervalReluctant = %i[interval_reluctant] IntervalPossessive = %i[interval_possessive] IntervalAll = Interval + IntervalReluctant + IntervalPossessive All = Greedy + Reluctant + Possessive + IntervalAll Type = :quantifier end Map[Quantifier::Type] = Quantifier::All end end
Version data entries
7 entries across 7 versions & 5 rubygems