When it comes to code:
* 0.5
19.2%
/ 2
80.8%
Poll ended at .
You have a constant that’s used in only one place. You
Add a comment to explain what it represents
25%
Assign it so it gets a name
75%
Poll ended at .
The stuff your program operates over are:
Entities
45.8%
Models
54.2%
Poll ended at .

```
if let result { return result.union(frame) }
else { return frame }
```

or

```
guard let result else { return frame }
return result.union(frame)
```

If else
50%
Guard
50%
Poll ended at .
@RosaCtrl result.map(union)?? frame
@RosaCtrl wait the idiomatic way is frame?.union() isn't it
@Andrev @RosaCtrl Maybe (result ?? emptySet).union(frame) would work?
@samir @RosaCtrl ah yes! I like this one
@Andrev @samir guys you rendered this poll useless 😭
@RosaCtrl @Andrev When presented with two options, always choose option three!