class Dhall::Builtins::Natural_show

Protected Instance Methods

uncurried_call(nat) click to toggle source
# File lib/dhall/builtins.rb, line 168
def uncurried_call(nat)
        return unfill(nat) unless nat.is_a?(Dhall::Natural)

        Dhall::Text.new(value: nat.to_s)
end