Short-circuiting
From HaskellWiki
The term short-circuiting is used for avoiding the computation of results that are not needed anyway.
E.g. inFalse && a
False
So short-circuiting is somehow a synonym to lazy evaluation.
The term short-circuiting is used for avoiding the computation of results that are not needed anyway.
E.g. inSo short-circuiting is somehow a synonym to lazy evaluation.