Unstructured text resource.
[Source]
# File lib/resolv.rb, line 1826 1826: def initialize(first_string, *rest_strings) 1827: @strings = [first_string, *rest_strings] 1828: end
Returns the first string from strings.
# File lib/resolv.rb, line 1838 1838: def data 1839: @strings[0] 1840: end
[Validate]