Sha256: 9470e5b2cc36dd3e02333b00f29bc355badaa8cc37f44c5ad823462bd4e1ad8c

Contents?: true

Size: 550 Bytes

Versions: 17

Compression:

Stored size: 550 Bytes

Contents

module Regexp::Expression

  module CharacterType
    class Base < Regexp::Expression::Base; end

    class Any         < CharacterType::Base; end
    class Digit       < CharacterType::Base; end
    class NonDigit    < CharacterType::Base; end
    class Hex         < CharacterType::Base; end
    class NonHex      < CharacterType::Base; end
    class Word        < CharacterType::Base; end
    class NonWord     < CharacterType::Base; end
    class Space       < CharacterType::Base; end
    class NonSpace    < CharacterType::Base; end
  end

end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
regexp_parser-0.4.5 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.4.4 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.4.3 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.4.2 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.4.1 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.4.0 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.6 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.5 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.4 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.3 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.2 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.1 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.3.0 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.2.1 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.2.0 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.1.6 lib/regexp_parser/expression/classes/type.rb
regexp_parser-0.1.5 lib/regexp_parser/expression/classes/type.rb