# File lib/hiera/backend.rb, line 35
            def empty_answer(resolution_type)
                case resolution_type
                when :array
                    return []
                when :hash
                    return {}
                else
                    return nil
                end
            end