DCollatedString is the Datum for strings with a locale. The struct members are intended to be immutable.
| 1223 | // DCollatedString is the Datum for strings with a locale. The struct members |
| 1224 | // are intended to be immutable. |
| 1225 | type DCollatedString struct { |
| 1226 | Contents string |
| 1227 | Locale string |
| 1228 | // Key is the collation key. |
| 1229 | Key []byte |
| 1230 | } |
| 1231 | |
| 1232 | // CollationEnvironment stores the state needed by NewDCollatedString to |
| 1233 | // construct collation keys efficiently. |
nothing calls this directly
no outgoing calls
no test coverage detected