1 Star 0 Fork 13

MasterGuo/pandas

forked from 王布衣/pandas 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vector_range_test.go 329 Bytes
一键复制 编辑 原始数据 按行查看 历史
package pandas
import (
"fmt"
"reflect"
"testing"
)
func TestNDArray_IndexOf(t *testing.T) {
d1 := []string{"a0", "a1", "a2", "a3", "a4"}
s1 := vector[string](d1)
fmt.Println(s1)
v1 := s1.IndexOf(1, true)
if mv, ok := v1.(reflect.Value); ok {
mv.SetString("1")
fmt.Println(s1)
}
s1.Set(3, "3")
fmt.Println(s1)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/guowujun/pandas.git
git@gitee.com:guowujun/pandas.git
guowujun
pandas
pandas
master

搜索帮助