DCollatedString is the Datum for strings with a locale. The struct members are intended to be immutable.
| 1319 | // DCollatedString is the Datum for strings with a locale. The struct members |
| 1320 | // are intended to be immutable. |
| 1321 | type DCollatedString struct { |
| 1322 | Contents string |
| 1323 | Locale string |
| 1324 | // Key is the collation key. |
| 1325 | Key []byte |
| 1326 | } |
| 1327 | |
| 1328 | // CollationEnvironment stores the state needed by NewDCollatedString to |
| 1329 | // construct collation keys efficiently. |
nothing calls this directly
no outgoing calls
no test coverage detected