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.
682 |
# File 'sig/jsonschema.rbs', line 682
def initialize: (?size_limit: Integer?, ?dfa_size_limit: Integer?) -> void
|
Instance Method Details
#dfa_size_limit ⇒ Integer?
Maximum DFA size.
688 |
# File 'sig/jsonschema.rbs', line 688
def dfa_size_limit: () -> Integer?
|
#inspect ⇒ String
690 |
# File 'sig/jsonschema.rbs', line 690
def inspect: () -> String
|
#size_limit ⇒ Integer?
Maximum compiled regex size.
685 |
# File 'sig/jsonschema.rbs', line 685
def size_limit: () -> Integer?
|
#to_s ⇒ String
691 |
# File 'sig/jsonschema.rbs', line 691
def to_s: () -> String
|