module SQLite3ExtendFunction::Functions::Ceil

SQLite3ExtendFunction::Functions::Ceil

Public Class Methods

call(dp) click to toggle source

@param [Integer, Float] dp @return [Integer] @raise [SQLite3::SQLException]

# File lib/sqlite3_extend_function/functions/ceil.rb, line 11
def call(dp)
  return if dp.nil?

  Float(dp).ceil.to_i
rescue ArgumentError
  raise SQLite3::SQLException, "invalid input syntax for type double precision: \"#{dp}\""
end