module SQLite3ExtendFunction::Functions::Format

SQLite3ExtendFunction::Functions::Format

Public Class Methods

call(formartstr, *args) click to toggle source

@param [String] formartstr @param [Array<Object>] args @return [String]

# File lib/sqlite3_extend_function/functions/format.rb, line 11
def call(formartstr, *args)
  formartstr % args
end