array in -> has

This commit is contained in:
白茶清欢 2023-08-26 14:02:51 +08:00
parent 14bc4c2c9d
commit 8308761f72

View File

@ -238,12 +238,12 @@ func (at *Array) Unique() []interface{} {
return []interface{}{}
}
// In 查询一个值是否在列表里, 在的话, 返回首次出现的索引, 不在返回-1
// Has 查询一个值是否在列表里, 在的话, 返回首次出现的索引, 不在返回-1
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 16:28 2023/7/31
func (at *Array) In(input interface{}) int {
func (at *Array) Has(input interface{}) int {
for idx := 0; idx < len(at.convertResult); idx++ {
if nil == input {
if nil != at.convertResult[idx] {