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