func ToGoInt64(o Object) (v int64, ok bool) {
    switch o := o.(type) {
    case Int:
        v, ok = int64(o), true
    case Uint: