(other *ParameterSet)
| 107 | } |
| 108 | |
| 109 | func (ps *ParameterSet) Equal(other *ParameterSet) bool { |
| 110 | if ps == nil && other == nil { |
| 111 | return true |
| 112 | } |
| 113 | if ps == nil || other == nil { |
| 114 | return false |
| 115 | } |
| 116 | |
| 117 | return maps.Equal(ps.values, other.values) |
| 118 | } |
| 119 | |
| 120 | // Add sets parameter name to value. |
| 121 | func (ps *ParameterSet) Add(name, value string) { |
no outgoing calls