Merge remote-tracking branch 'origin/topic/vern/vec-append'

* origin/topic/vern/vec-append:
  d'oh, still have a (deprecated) string_array rather than string_vector
  forgot to update test suite results for v += e
  reap the fruits of v += e
  test case for v += e
  documentation of v += e
  v += e implemented

Fixed a mistake in find_ip_addresses()
This commit is contained in:
Jon Siwek 2018-08-03 11:33:57 -05:00
commit 599af26496
45 changed files with 202 additions and 135 deletions

3
NEWS
View file

@ -309,6 +309,9 @@ New Functionality
"s1 > s2", and "s1 >= s2" have the expected meanings in terms
of non-equality, proper superset, and superset-or-equal.
- An expression of the form "v += e" will append the value of the expression
"e" to the end of the vector "v" (of course assuming type-compatbility).
Changed Functionality
---------------------