(idx valueInt)
| 74 | } |
| 75 | |
| 76 | func (o *objectGoArrayReflect) _hasIdx(idx valueInt) bool { |
| 77 | if idx := int64(idx); idx >= 0 && idx < int64(o.fieldsValue.Len()) { |
| 78 | return true |
| 79 | } |
| 80 | return false |
| 81 | } |
| 82 | |
| 83 | func (o *objectGoArrayReflect) _hasStr(name unistring.String) bool { |
| 84 | if idx := strToIdx64(name); idx >= 0 && idx < int64(o.fieldsValue.Len()) { |
no test coverage detected