NewBitmap creates a new empty Bitmap (see also New)
()
| 199 | |
| 200 | // NewBitmap creates a new empty Bitmap (see also New) |
| 201 | func NewBitmap() *Bitmap { |
| 202 | return &Bitmap{} |
| 203 | } |
| 204 | |
| 205 | // New creates a new empty Bitmap (same as NewBitmap) |
| 206 | func New() *Bitmap { |
no outgoing calls
searching dependent graphs…