Converts a boolean value to JSONB bytes @param v the boolean value to convert @return the JSONB bytes representation
(boolean v)
| 342 | * @return the JSONB bytes representation |
| 343 | */ |
| 344 | static byte[] toBytes(boolean v) { |
| 345 | return new byte[]{v ? BC_TRUE : BC_FALSE}; |
| 346 | } |
| 347 |
no outgoing calls