SYS-REQ-113 EachArrayWildcard is the canonical name; ArrayEachWildcard is kept for backward compatibility.
(data []byte, cb func(idx int, value []byte, vt ValueType, offset int, err error) error, keys ...string)
| 21 | // SYS-REQ-113 |
| 22 | // EachArrayWildcard is the canonical name; ArrayEachWildcard is kept for backward compatibility. |
| 23 | func EachArrayWildcard(data []byte, cb func(idx int, value []byte, vt ValueType, offset int, err error) error, keys ...string) (int, error) { |
| 24 | return ArrayEachWildcard(data, cb, keys...) |
| 25 | } |