(inter interface{}, v *InterfaceValidation)
| 37 | } |
| 38 | |
| 39 | func Interface(inter interface{}, v *InterfaceValidation) (interface{}, error) { |
| 40 | return ValidateInterfaceProvided(inter, v) |
| 41 | } |
| 42 | |
| 43 | func InterfaceFromInterfaceMap(key string, iMap map[string]interface{}, v *InterfaceValidation) (interface{}, error) { |
| 44 | inter, ok := ReadInterfaceMapValue(key, iMap) |
nothing calls this directly
no test coverage detected