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