DCollatedString is the Datum for strings with a locale. The struct members are intended to be immutable.
| 603 | // DCollatedString is the Datum for strings with a locale. The struct members |
| 604 | // are intended to be immutable. |
| 605 | type DCollatedString struct { |
| 606 | Contents string |
| 607 | Locale string |
| 608 | // Key is the collation key. |
| 609 | Key []byte |
| 610 | } |
| 611 | |
| 612 | // AmbiguousFormat implements the Datum interface. |
| 613 | func (*DCollatedString) AmbiguousFormat() bool { return false } |
nothing calls this directly
no outgoing calls
no test coverage detected