array.slice slice element m -> n of a slice. First arg must be a slice. given context of "items" = [1,2,3,4,5] array.slice(items, 1, 3) => [2,3], true array.slice(items, 2) => [3,4,5], true array.slice(items, -2) => [4,5], true
| 115 | // array.slice(items, 2) => [3,4,5], true |
| 116 | // array.slice(items, -2) => [4,5], true |
| 117 | type ArraySlice struct{} |
| 118 | |
| 119 | // Type Unknown for Array Slice |
| 120 | func (m *ArraySlice) Type() value.ValueType { return value.UnknownType } |
nothing calls this directly
no outgoing calls
no test coverage detected