module VV::SetMethods

Public Class Methods

included(base) click to toggle source
# File lib/vv/set_methods.rb, line 5
def self.included(base)
  base.extend(ClassMethods)
  base.include(SetAndArrayMethods)
end

Public Instance Methods

vv_json() click to toggle source
# File lib/vv/set_methods.rb, line 18
def vv_json
  self.to_a.vv_json
end