代码拉取完成,页面将自动刷新
同步操作将从 王布衣/pandas 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package pandas
import (
"gitee.com/quant1x/gox/api"
"gitee.com/quant1x/num"
"reflect"
"slices"
)
func (this vector[T]) IndexOf(index int, opt ...any) any {
if index < 0 {
index = this.Len() + index
} else if index >= this.Len() {
index = this.Len() - 1
}
var __optInplace = false
if len(opt) > 0 {
// 第一个参数为是否替换
if _opt, ok := opt[0].(bool); ok {
__optInplace = _opt
}
}
value := this[index]
if __optInplace {
mv := reflect.ValueOf(this.Values())
return mv.Index(index)
}
return value
}
func (this vector[T]) Set(index int, v any) {
tmp := num.AnyToGeneric[T](v)
this[index] = tmp
}
func (this vector[T]) Subset(start, end int, opt ...any) Series {
// 默认不copy
var __optCopy = false
if len(opt) > 0 {
// 第一个参数为是否copy
if _cp, ok := opt[0].(bool); ok {
__optCopy = _cp
}
}
values := []T(this)
rows := this.Len()
vs := values[start:end]
if __optCopy && rows > 0 {
vs = slices.Clone(vs)
}
return vector[T](vs)
}
func (this vector[T]) Select(r api.ScopeLimit) Series {
start, end, err := r.Limits(this.Len())
if err != nil {
return nil
}
series := this.Subset(start, end+1)
return series
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。