Class: Dhall::Builtins::Text_show

Inherits:
Dhall::BuiltinFunction show all
Defined in:
lib/dhall/builtins.rb

Constant Summary collapse

ENCODE =
(Hash.new { |_, x| "\\u%04x" % x.ord }).merge(
	"\"" => "\\\"",
	"\\" => "\\\\",
	"\b" => "\\b",
	"\f" => "\\f",
	"\n" => "\\n",
	"\r" => "\\r",
	"\t" => "\\t"
)

Method Summary

Methods inherited from Dhall::BuiltinFunction

#as_json, #call, #unfill

Methods inherited from Dhall::Builtin

#as_json

Methods inherited from Expression

#&, #*, #+, #annotate, #as_dhall, #cache_key, #call, #concat, decode, #deep_merge, #deep_merge_type, #dhall_eq, #digest, #fetch, #fusion, #merge, #normalize, #resolve, #shift, #slice, #substitute, #to_binary, #to_cbor, #to_proc, #to_s, #|