Class returns the class of k.
()
| 190 | |
| 191 | // Class returns the class of k. |
| 192 | func (k Kind) Class() Kind { return Kind(1 << uint(bits.Len(uint(k))-1)) } |
| 193 | |
| 194 | // Append acts like Marshal but appends the json representation to b instead of |
| 195 | // always reallocating a new slice. |