IsHostOwner returns true if the host buffer is owned by us
()
| 379 | |
| 380 | // IsHostOwner returns true if the host buffer is owned by us |
| 381 | func (im *Image) IsHostOwner() bool { |
| 382 | return im.HasFlag(ImageOwnsHost) |
| 383 | } |
| 384 | |
| 385 | // IsValue returns true if the image belongs to a Value |
| 386 | func (im *Image) IsValue() bool { |
no test coverage detected