Check if the interface contains a string with a single Unicode Del control character.
(i any)
| 163 | |
| 164 | // Check if the interface contains a string with a single Unicode Del control character. |
| 165 | func isNullValue(i any) bool { |
| 166 | if str, ok := i.(string); ok { |
| 167 | return str == nullValue |
| 168 | } |
| 169 | return false |
| 170 | } |
| 171 | |
| 172 | func decodeStoreError(err error, id string, ts time.Time, params map[string]any) *ServerComMessage { |
| 173 | return decodeStoreErrorExplicitTs(err, id, "", ts, ts, params) |
no outgoing calls
searching dependent graphs…