(first ValueInterface, second ValueInterface)
| 145 | } |
| 146 | |
| 147 | func areEqual(first ValueInterface, second ValueInterface) bool { |
| 148 | return first.GetType() == second.GetType() && first.ToString() == second.ToString() |
| 149 | } |
| 150 | |
| 151 | func getMin(values []ValueInterface) (ValueInterface, error) { |
| 152 | if len(values) == 0 { |