MapperSlice mapper from slice of struct to a slice of any type fromSlice and toSlice must be a slice of any type.
(fromSlice, toSlice interface{})
| 183 | // MapperSlice mapper from slice of struct to a slice of any type |
| 184 | // fromSlice and toSlice must be a slice of any type. |
| 185 | func MapperSlice(fromSlice, toSlice interface{}) error { |
| 186 | return standardMapper.MapperSlice(fromSlice, toSlice) |
| 187 | } |
| 188 | |
| 189 | // MapToJson mapper from map[string]interface{} to json []byte |
| 190 | func MapToJson(fromMap map[string]interface{}) ([]byte, error) { |
searching dependent graphs…