isLeftDistribution checks if a distribution is a "left" type
()
| 136 | |
| 137 | // isLeftDistribution checks if a distribution is a "left" type |
| 138 | func (d *Distribution) isLeftDistribution() bool { |
| 139 | return d.Distribution == "left" || d.PreciseDistribution == "left" |
| 140 | } |
| 141 | |
| 142 | // isPercentageDistribution checks if a distribution is a percentage type |
| 143 | func (d *Distribution) isPercentageDistribution() bool { |
no outgoing calls
no test coverage detected