module SQLite3ExtendFunction::Functions
Public Class Methods
each() { |function(const_get(const))| ... }
click to toggle source
@return [void]
# File lib/sqlite3_extend_function/functions.rb, line 10 def each constants.each do |const| yield SQLite3ExtendFunction::Function.new(const_get(const)) end end