class Dhall::Text

Public Class Methods

as_dhall() click to toggle source
# File lib/dhall/ast.rb, line 1271
def self.as_dhall
        Builtins[:Text]
end

Public Instance Methods

<<(other) click to toggle source
# File lib/dhall/ast.rb, line 1279
def <<(other)
        with(value: value + other.value)
end
===(other) click to toggle source
# File lib/dhall/ast.rb, line 1287
def ===(other)
        self == other || value === other
end
as_json() click to toggle source
# File lib/dhall/ast.rb, line 1291
def as_json
        [18, value]
end
empty?() click to toggle source
# File lib/dhall/ast.rb, line 1275
def empty?
        value.empty?
end
to_s() click to toggle source
# File lib/dhall/ast.rb, line 1283
def to_s
        value
end