module Tins::Null

def as_json(*)

def as_json(*)
end

def blank?

def blank?
  true
end

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_ary

def to_ary
  nil
end

def to_f

def to_f
  0.0
end

def to_i

def to_i
  0
end

def to_int

def to_int
  nil
end

def to_json(*)

def to_json(*)
  'null'
end

def to_s

def to_s
  ''
end

def to_str

def to_str
  nil
end