Unstructured text resource.
[Source]
# File lib/resolv.rb, line 1794 1794: def initialize(first_string, *rest_strings) 1795: @strings = [first_string, *rest_strings] 1796: end
Returns the first string from strings.
# File lib/resolv.rb, line 1806 1806: def data 1807: @strings[0] 1808: end
[Validate]