module Tins::Null
def const_missing(*)
def const_missing(*) self end
def inspect
def inspect 'NULL' end
def method_missing(*)
def method_missing(*) self end
def nil?
def nil? true end
def to_a
def to_a [] end
def to_f
def to_f 0.0 end
def to_i
def to_i 0 end
def to_s
def to_s '' end