String implements a value type with string storage. It satisfies the Value interface.
| 19 | // String implements a value type with string storage. |
| 20 | // It satisfies the Value interface. |
| 21 | type String struct { |
| 22 | s string |
| 23 | } |
| 24 | |
| 25 | // NewString returns a new String with the given string value. |
| 26 | func NewString(s string) String { |