The @pure
annotation tells the compiler that you guarantee the output to be ===
. If you don’t have or need that guarantee, then you should let compiler know by removing the annotation.
1 Like
The @pure
annotation tells the compiler that you guarantee the output to be ===
. If you don’t have or need that guarantee, then you should let compiler know by removing the annotation.