class Sequel::Postgres::PGArray::Creator
Callable object that takes the input string and parses it using Parser.
Attributes
The converter callable that is called on each member of the array to convert it to the correct type.
Public Class Methods
Source
# File lib/sequel/extensions/pg_array.rb 432 def initialize(type, converter=nil) 433 @type = type 434 @converter = converter 435 end
Set the type and optional converter callable that will be used.
Public Instance Methods
Source
# File lib/sequel/extensions/pg_array.rb 440 def call(string) 441 PGArray.new(Sequel::Postgres.parse_pg_array(string, @converter), @type) 442 end
simplecov:disable Use sequel_pgâs C-based parser if it has already been defined.