# README
Description
This module is used to place code that needs to be exported to go code access, but cannot be exported to go mobile sdk access.
# Functions
FirstIndexOf 该方法的参数无法打包到 sdk, 因此从对象方法中移出为公共方法 return -1 if not found.
No description provided by the author
No description provided by the author
Keys 该方法的返回值无法打包到 sdk, 因此从对象方法中移出为公共方法.
LastIndexOf 该方法的参数无法打包到 sdk, 因此从对象方法中移出为公共方法 return -1 if not found.
# Structs
`SdkPageable` implemented wallet-SDK/base's interface `Jsonable` If you new class `Xxx` extends it, you should implement `NewXxxWithJsonString` by your self.
# Type aliases
AnyArray ### Usage example for SDK
type StringArray struct { AnyArray[string] } func NewStringArray() *StringArray { return &StringArray{[]string{}} }
### Usage Done.
AnyMap ### Usage example for SDK
type StringMap struct { AnyMap[string, string] } func NewStringMap() *StringMap { return &StringMap{map[string]string{}} }
### Usage Done.