| 307 | } |
| 308 | |
| 309 | ParticleVariantCreator makeParticleVariantCreator(Particle particle, Particle variance) { |
| 310 | return [particle, variance]() -> Particle { |
| 311 | auto p = particle; |
| 312 | p.applyVariance(variance); |
| 313 | return p; |
| 314 | }; |
| 315 | } |
| 316 | |
| 317 | } |
no test coverage detected