new to swift:
struct Money{
var amount: Decimal = 0
}
var myMoney = Money()
myMoney.amount = 10.019999999999997952
if I do a search on myMoney.amount for the value: 10.01 it should return true. I only care about 2 digits after the decimial
I tried to use the range modifier but was not successful