()
| 15 | } |
| 16 | |
| 17 | func (a ComputeResource) String() string { |
| 18 | return fmt.Sprintf("CPUCount %d Level %d Memory %d MB", a.CPUCount, a.CPULevel, a.MemoryMB) |
| 19 | } |
| 20 | |
| 21 | func (a ComputeResource) Minus(b ComputeResource) ComputeResource { |
| 22 | return ComputeResource{ |
no outgoing calls