Class: JSONSchema::RegexOptions
- Inherits:
-
Object
- Object
- JSONSchema::RegexOptions
- Defined in:
- sig/jsonschema.rbs
Overview
Regex engine options.
Instance Method Summary collapse
-
#dfa_size_limit ⇒ Integer?
Maximum DFA size.
-
#initialize ⇒ RegexOptions
constructor
Create regex engine options.
- #inspect ⇒ String
-
#size_limit ⇒ Integer?
Maximum compiled regex size.
- #to_s ⇒ String
Constructor Details
#initialize ⇒ RegexOptions
Create regex engine options.
550 |
# File 'sig/jsonschema.rbs', line 550
def initialize: (?size_limit: Integer?, ?dfa_size_limit: Integer?) -> void
|
Instance Method Details
#dfa_size_limit ⇒ Integer?
Maximum DFA size.
556 |
# File 'sig/jsonschema.rbs', line 556
def dfa_size_limit: () -> Integer?
|
#inspect ⇒ String
558 |
# File 'sig/jsonschema.rbs', line 558
def inspect: () -> String
|
#size_limit ⇒ Integer?
Maximum compiled regex size.
553 |
# File 'sig/jsonschema.rbs', line 553
def size_limit: () -> Integer?
|
#to_s ⇒ String
559 |
# File 'sig/jsonschema.rbs', line 559
def to_s: () -> String
|