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