* IsMutable returns a boolean value indicating if a LockedBuffer is mutable. */
()
| 345 | IsMutable returns a boolean value indicating if a LockedBuffer is mutable. |
| 346 | */ |
| 347 | func (b *LockedBuffer) IsMutable() bool { |
| 348 | return b.Buffer.Mutable() |
| 349 | } |
| 350 | |
| 351 | /* |
| 352 | EqualTo performs a time-constant comparison on the contents of a LockedBuffer with a given buffer. A destroyed LockedBuffer will always return false. |