class Sequel::Postgres::PGMultiRange::Creator
Callable object that takes the input string and parses it using Parser
.
Attributes
The database type to set on the PGMultiRange
instances returned.
Public Class Methods
Source
# File lib/sequel/extensions/pg_multirange.rb 98 def initialize(type, converter=nil) 99 @type = type 100 @converter = converter 101 end
Public Instance Methods
Source
# File lib/sequel/extensions/pg_multirange.rb 106 def call(string) 107 PGMultiRange.new(Parser.new(string, @converter).parse, @type) 108 end
Parse the string using Parser
with the appropriate converter, and return a PGMultiRange
with the appropriate database type.