in Blocks Versus enforce Checks
This lesson teaches you when to use assert checks with in-blocks versus enforce checks inside function bodies.
We'll cover the following...
Use in
blocks or enforce
? #
We have seen in the assert and enforce chapter that sometimes it is difficult to decide whether to use assert
or enforce
checks. Similarly, sometimes it is difficult to decide whether to use assert
checks within in
blocks versus enforce
checks within function bodies. ...