PushdataInt64 writes instructions to b pushing v onto the stack.
(v int64)
| 45 | // PushdataInt64 writes instructions to b pushing v |
| 46 | // onto the stack. |
| 47 | func (b *Builder) PushdataInt64(v int64) *Builder { |
| 48 | writePushint64(&b.buf, v) |
| 49 | return b |
| 50 | } |
| 51 | |
| 52 | // PushdataInt64 writes instructions to b pushing v |
| 53 | // onto the stack. |