(o *Base)
| 30 | } |
| 31 | |
| 32 | func AsTuple(o *Base) (v *Tuple, ok bool) { |
| 33 | if ok = C.tupleCheck(o.c()) != 0; ok { |
| 34 | v = newTuple(o.c()) |
| 35 | } |
| 36 | return |
| 37 | } |
| 38 | |
| 39 | // PackTuple returns a new *Tuple which contains the arguments. This tuple is |
| 40 | // ready to use. |